mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Fix css for single toggle buttons
This commit is contained in:
		| @@ -134,15 +134,18 @@ | ||||
|     color: $workspace-button-toggle-color !important; | ||||
|     background:$workspace-button-background-active; | ||||
|     margin-bottom: 1px; | ||||
|     &.selected:not(.disabled) { | ||||
|  | ||||
|     &.selected:not(.disabled):not(:disabled) { | ||||
|         color: $workspace-button-toggle-color-selected !important; | ||||
|         background: $workspace-button-background; | ||||
|         border-bottom-width: 2px; | ||||
|         border-bottom-color: $form-input-border-selected-color; | ||||
|         margin-bottom: 0; | ||||
|         cursor: default; | ||||
|         &:not(.single) { | ||||
|             cursor: default; | ||||
|         } | ||||
|     } | ||||
|     &.disabled { | ||||
|     &.disabled,&:disabled { | ||||
|         color: $workspace-button-toggle-color-disabled !important; | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -51,7 +51,7 @@ | ||||
|             <a class="workspace-footer-button" id="btn-zoom-out" href="#"><i class="fa fa-minus"></i></a> | ||||
|             <a class="workspace-footer-button" id="btn-zoom-zero" href="#"><i class="fa fa-circle-o"></i></a> | ||||
|             <a class="workspace-footer-button" id="btn-zoom-in" href="#"><i class="fa fa-plus"></i></a> | ||||
|             <a class="workspace-footer-button-toggle" id="btn-navigate" href="#"><i class="fa fa-map-o"></i></a> | ||||
|             <a class="workspace-footer-button-toggle single" id="btn-navigate" href="#"><i class="fa fa-map-o"></i></a> | ||||
|         </div> | ||||
|         <div id="editor-shade" class="hide"></div> | ||||
|     </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user