| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 body { | 6 body { |
| 7 -webkit-user-select: none; | 7 -webkit-user-select: none; |
| 8 background: #fff; | 8 background: #fff; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 } | 82 } |
| 83 | 83 |
| 84 .keyboard-overlay-key.is-shortcut.modifier-ctrl { | 84 .keyboard-overlay-key.is-shortcut.modifier-ctrl { |
| 85 border-color: rgb(93, 128, 199); | 85 border-color: rgb(93, 128, 199); |
| 86 } | 86 } |
| 87 | 87 |
| 88 .keyboard-overlay-key.is-shortcut.modifier-alt { | 88 .keyboard-overlay-key.is-shortcut.modifier-alt { |
| 89 border-color: rgb(184, 84, 84); | 89 border-color: rgb(184, 84, 84); |
| 90 } | 90 } |
| 91 | 91 |
| 92 .keyboard-overlay-key.is-shortcut.modifier-search { |
| 93 border-color: rgb(204, 204, 80); |
| 94 } |
| 95 |
| 92 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-ctrl { | 96 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-ctrl { |
| 93 border-color: rgb(121, 172, 143); | 97 border-color: rgb(121, 172, 143); |
| 94 } | 98 } |
| 95 | 99 |
| 96 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-alt { | 100 .keyboard-overlay-key.is-shortcut.modifier-shift.modifier-alt { |
| 97 border-color: rgb(191, 189, 121); | 101 border-color: rgb(191, 189, 121); |
| 98 } | 102 } |
| 99 | 103 |
| 100 .keyboard-overlay-key.is-shortcut.modifier-ctrl.modifier-alt { | 104 .keyboard-overlay-key.is-shortcut.modifier-ctrl.modifier-alt { |
| 101 border-color: rgb(158, 84, 206); | 105 border-color: rgb(158, 84, 206); |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 158 |
| 155 .keyboard-overlay-key.pressed.is-alt.modifier-ctrl { | 159 .keyboard-overlay-key.pressed.is-alt.modifier-ctrl { |
| 156 background: -webkit-linear-gradient(rgb(118, 54, 143), rgb(82, 33, 40)); | 160 background: -webkit-linear-gradient(rgb(118, 54, 143), rgb(82, 33, 40)); |
| 157 } | 161 } |
| 158 | 162 |
| 159 .keyboard-overlay-key.pressed.is-alt.modifier-shift.modifier-ctrl { | 163 .keyboard-overlay-key.pressed.is-alt.modifier-shift.modifier-ctrl { |
| 160 background: -webkit-linear-gradient(top left, rgb(115, 95, 41), | 164 background: -webkit-linear-gradient(top left, rgb(115, 95, 41), |
| 161 rgb(80, 36, 27)); | 165 rgb(80, 36, 27)); |
| 162 } | 166 } |
| 163 | 167 |
| 168 .keyboard-overlay-key.pressed.is-search { |
| 169 background: -webkit-linear-gradient(rgb(242, 242, 126), rgb(186, 186, 52)); |
| 170 } |
| 171 |
| 164 .keyboard-overlay-shortcut-text { | 172 .keyboard-overlay-shortcut-text { |
| 165 -webkit-box-flex: 1; | 173 -webkit-box-flex: 1; |
| 166 -webkit-box-ordinal-group: 1; | 174 -webkit-box-ordinal-group: 1; |
| 167 color: #fff; | 175 color: #fff; |
| 168 text-align: center; | 176 text-align: center; |
| 169 } | 177 } |
| 170 | 178 |
| 171 .keyboard-overlay-key-text { | 179 .keyboard-overlay-key-text { |
| 172 -webkit-box-ordinal-group: 2; | 180 -webkit-box-ordinal-group: 2; |
| 173 padding-bottom: 1px; | 181 padding-bottom: 1px; |
| 174 text-align: center; | 182 text-align: center; |
| 175 } | 183 } |
| OLD | NEW |