mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
55 lines
1.4 KiB
SCSS
55 lines
1.4 KiB
SCSS
|
/**
|
||
|
* Copyright 2015 IBM Corp.
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
**/
|
||
|
|
||
|
|
||
|
#workspace-toolbar {
|
||
|
display: none;
|
||
|
position: absolute;
|
||
|
top: 30px;
|
||
|
left:0;
|
||
|
right: 20px;
|
||
|
padding: 7px;
|
||
|
border-bottom-right-radius: 5px;
|
||
|
background: #f3f3f3;
|
||
|
}
|
||
|
|
||
|
#workspace-toolbar .button {
|
||
|
line-height: 18px;
|
||
|
display: inline-block;
|
||
|
font-size: 12px;
|
||
|
padding: 2px 8px;
|
||
|
text-decoration: none;
|
||
|
border-radius: 3px;
|
||
|
color: #666;
|
||
|
background: #f6f6f6;
|
||
|
vertical-align: middle;
|
||
|
box-shadow: 0 0 2px #888;
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
#workspace-toolbar .button.disabled {
|
||
|
box-shadow: 0 0 2px #bbb;
|
||
|
color: #aaa;
|
||
|
cursor: default;
|
||
|
}
|
||
|
#workspace-toolbar .button:not(.disabled):hover {
|
||
|
background: #e6e6e6;
|
||
|
box-shadow: 0 0 2px #666;
|
||
|
}
|
||
|
#workspace-toolbar .button:not(.disabled):active {
|
||
|
background: #e0e0e0;
|
||
|
box-shadow: 0 0 2px #444;
|
||
|
}
|