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

Side by Side Diff: chrome/browser/resources/chromeos/keyboard_overlay.css

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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
OLDNEW
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;
11 padding: 0; 11 padding: 0;
12 } 12 }
13 13
14 .keyboard-overlay-keyboard { 14 .keyboard-overlay-keyboard {
15 background: -webkit-linear-gradient(#484848, #252525) no-repeat; 15 background: -webkit-linear-gradient(#484848, #252525) no-repeat;
16 background-color: #252525; 16 background-color: #252525;
17 border-radius: 6px; 17 border-radius: 6px;
18 font-family: 'Noto Sans UI', ui-sans;
19 } 18 }
20 19
21 .keyboard-overlay-instructions { 20 .keyboard-overlay-instructions {
22 -webkit-box-orient: vertical; 21 -webkit-box-orient: vertical;
23 background: -webkit-linear-gradient(rgb(51, 76, 126), rgb(13, 23, 43)); 22 background: -webkit-linear-gradient(rgb(51, 76, 126), rgb(13, 23, 43));
24 border: 2px solid rgb(87, 108, 207); 23 border: 2px solid rgb(87, 108, 207);
25 border-radius: 5px; 24 border-radius: 5px;
26 color: #fff; 25 color: #fff;
27 display: -webkit-box; 26 display: -webkit-box;
28 position: absolute; 27 position: absolute;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 178
180 .keyboard-overlay-key-text { 179 .keyboard-overlay-key-text {
181 -webkit-box-ordinal-group: 2; 180 -webkit-box-ordinal-group: 2;
182 padding: 0 3px 2px; 181 padding: 0 3px 2px;
183 text-align: center; 182 text-align: center;
184 } 183 }
185 184
186 .keyboard-overlay-key.is-shortcut .keyboard-overlay-key-text { 185 .keyboard-overlay-key.is-shortcut .keyboard-overlay-key-text {
187 opacity: 0.25; 186 opacity: 0.25;
188 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698