mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
66 lines
1.5 KiB
SCSS
66 lines
1.5 KiB
SCSS
/**
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* 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.
|
|
**/
|
|
|
|
#keyboard-help-dialog {
|
|
font-size: 0.9em;
|
|
padding-top: 10px;
|
|
|
|
}
|
|
.keyboard-shortcut-entry.keyboard-shortcut-list-header {
|
|
padding:0 30px 0 5px;
|
|
div {
|
|
color: #666 !important;
|
|
}
|
|
}
|
|
#keyboard-shortcut-list {
|
|
position: absolute;
|
|
top:30px;
|
|
left:10px;
|
|
right:10px;
|
|
bottom:10px;
|
|
}
|
|
.keyboard-shortcut-entry {
|
|
padding: 0px 20px 0 10px;
|
|
div {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
.keyboard-shortcut-entry-key {
|
|
width:150px;
|
|
}
|
|
.keyboard-shortcut-entry-scope {
|
|
float: right;
|
|
color: #999;
|
|
}
|
|
.keyboard-shortcut-entry-unassigned {
|
|
color: #999;
|
|
.keyboard-shortcut-entry-key {
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
.help-key {
|
|
border: 1px solid #ddd;
|
|
padding: 4px;
|
|
border-radius: 3px;
|
|
background: #f6f6f6;
|
|
font-family: Courier, monospace;
|
|
box-shadow: #999 1px 1px 1px;
|
|
}
|
|
.help-key-block {
|
|
white-space: nowrap;
|
|
}
|