2015-04-09 15:46:29 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-04-09 15:46:29 +02:00
|
|
|
*
|
|
|
|
* 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;
|
2017-01-11 15:15:29 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
.keyboard-shortcut-entry.keyboard-shortcut-list-header {
|
|
|
|
padding:0 30px 0 5px;
|
|
|
|
div {
|
|
|
|
color: #666 !important;
|
|
|
|
}
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2017-01-11 12:35:48 +01:00
|
|
|
#keyboard-shortcut-list {
|
|
|
|
position: absolute;
|
2017-01-11 15:15:29 +01:00
|
|
|
top:30px;
|
2017-01-11 12:35:48 +01:00
|
|
|
left:10px;
|
|
|
|
right:10px;
|
|
|
|
bottom:10px;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2017-01-11 12:35:48 +01:00
|
|
|
.keyboard-shortcut-entry {
|
|
|
|
padding: 0px 20px 0 10px;
|
|
|
|
div {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2017-01-11 12:35:48 +01:00
|
|
|
.keyboard-shortcut-entry-key {
|
|
|
|
width:150px;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2017-01-11 12:35:48 +01:00
|
|
|
.keyboard-shortcut-entry-scope {
|
|
|
|
float: right;
|
|
|
|
color: #999;
|
|
|
|
}
|
2017-01-11 12:41:25 +01:00
|
|
|
.keyboard-shortcut-entry-unassigned {
|
|
|
|
color: #999;
|
|
|
|
.keyboard-shortcut-entry-key {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
}
|
2017-01-11 12:35:48 +01:00
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
.help-key {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: #f6f6f6;
|
|
|
|
font-family: Courier, monospace;
|
|
|
|
box-shadow: #999 1px 1px 1px;
|
|
|
|
}
|
2017-01-06 00:33:19 +01:00
|
|
|
.help-key-block {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|