| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 @font-face { | 7 @font-face { |
| 8 font-family: roboto-bold; | 8 font-family: roboto-bold; |
| 9 src: url(roboto_bold.ttf); | 9 src: url(roboto_bold.ttf); |
| 10 } | 10 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 } | 27 } |
| 28 | 28 |
| 29 /** | 29 /** |
| 30 * Controls whether the shift key should be highlighted or not. | 30 * Controls whether the shift key should be highlighted or not. |
| 31 */ | 31 */ |
| 32 kb-keyboard.caps-locked kb-shift-key.dark /deep/ | 32 kb-keyboard.caps-locked kb-shift-key.dark /deep/ |
| 33 .shift-light { | 33 .shift-light { |
| 34 background-color: rgba(0, 0, 255, 0.5); | 34 background-color: rgba(0, 0, 255, 0.5); |
| 35 } | 35 } |
| 36 | 36 |
| 37 kb-keyboard.ctrl-active kb-modifier-key[char=Ctrl], | |
| 38 kb-keyboard.ctrl-active kb-modifier-key[char=Ctrl] { | |
| 39 color: blue; | |
| 40 } | |
| 41 | |
| 42 .space, | 37 .space, |
| 43 .dark { | 38 .dark { |
| 44 font-size: 70%; | 39 font-size: 70%; |
| 45 } | 40 } |
| 46 | 41 |
| 47 .dark:not(.active), | 42 .dark:not(.active), |
| 48 :not(kb-altkey-set) > :not(.dark).active { | 43 :not(kb-altkey-set) > :not(.dark).active { |
| 49 background-color: #dddddd; | 44 background-color: #dddddd; |
| 50 } | 45 } |
| 51 | 46 |
| 52 .space { | 47 .space { |
| 53 color: bbbbbb; | 48 color: #bbbbbb; |
| 54 } | 49 } |
| OLD | NEW |