Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

Side by Side Diff: ui/keyboard/resources/main.css

Issue 251593011: Make caps lock light to a square in upper corner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change color. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/keyboard/resources/elements/kb-shift-key.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 13 matching lines...) Expand all
24 24
25 kb-keyboard[keyset="lower"] kb-shift-key /deep/ .key{ 25 kb-keyboard[keyset="lower"] kb-shift-key /deep/ .key{
26 background-image: url('images/shift.svg'); 26 background-image: url('images/shift.svg');
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: #4285f4;
35 } 35 }
36 36
37 .space, 37 .space,
38 .dark { 38 .dark {
39 font-size: 70%; 39 font-size: 70%;
40 } 40 }
41 41
42 .dark:not(.active), 42 .dark:not(.active),
43 :not(kb-altkey-set) > :not(.dark).active { 43 :not(kb-altkey-set) > :not(.dark).active {
44 background-color: #dddddd; 44 background-color: #dddddd;
45 } 45 }
46 46
47 .space { 47 .space {
48 color: #bbbbbb; 48 color: #bbbbbb;
49 } 49 }
OLDNEW
« no previous file with comments | « ui/keyboard/resources/elements/kb-shift-key.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698