| 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 body { | 5 body { |
| 6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 background: #fff; | 7 background: #fff; |
| 8 font-size: 100%; | 8 font-size: 100%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 .keyboard-overlay-key-text { | 184 .keyboard-overlay-key-text { |
| 185 -webkit-box-ordinal-group: 2; | 185 -webkit-box-ordinal-group: 2; |
| 186 padding: 0 3px 2px; | 186 padding: 0 3px 2px; |
| 187 text-align: center; | 187 text-align: center; |
| 188 } | 188 } |
| 189 | 189 |
| 190 .keyboard-overlay-key.is-shortcut .keyboard-overlay-key-text { | 190 .keyboard-overlay-key.is-shortcut .keyboard-overlay-key-text { |
| 191 opacity: 0.25; | 191 opacity: 0.25; |
| 192 } | 192 } |
| 193 |
| 194 #instructions:focus { |
| 195 outline: none; |
| 196 } |
| OLD | NEW |