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

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

Issue 172263003: Fixes hover over keys changing cursor icon. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wasn't in alphabetical order Created 6 years, 10 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
« no previous file with comments | « no previous file | 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 }
11 11
12 body { 12 body {
13 -webkit-user-select: none; 13 -webkit-user-select: none;
14 background-image: -webkit-linear-gradient(#282828, #000000); 14 background-image: -webkit-linear-gradient(#282828, #000000);
15 background-size: cover; 15 background-size: cover;
16 cursor: default;
16 margin: 0; 17 margin: 0;
17 overflow: hidden; 18 overflow: hidden;
18 padding: 0; 19 padding: 0;
19 } 20 }
20 21
21 kb-keyboard.ctrl-active kb-modifier-key[char=Ctrl], 22 kb-keyboard.ctrl-active kb-modifier-key[char=Ctrl],
22 kb-keyboard.alt-active kb-modifier-key[char=Alt], 23 kb-keyboard.alt-active kb-modifier-key[char=Alt],
23 /** 24 /**
24 * Controls whether the shift key should be highlighted or not. 25 * Controls whether the shift key should be highlighted or not.
25 * Only highlights if we are in the upper keyset, but not capslocked. 26 * Only highlights if we are in the upper keyset, but not capslocked.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 60
60 .audio .microphone [part=key] { 61 .audio .microphone [part=key] {
61 background-image: url('images/microphone-green.svg'); 62 background-image: url('images/microphone-green.svg');
62 } 63 }
63 64
64 kb-key.search [part=key]{ 65 kb-key.search [part=key]{
65 margin-left: 0px; 66 margin-left: 0px;
66 padding-left: 0px; 67 padding-left: 0px;
67 width: 2em; 68 width: 2em;
68 } 69 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698