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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_back_button.css

Issue 2495153002: ChromeOS OOBE: Implement network selection screen "Back" button. (Closed)
Patch Set: Created 4 years, 1 month 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
(Empty)
1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. */
4
5 #button {
6 --paper-button-flat-keyboard-focus: {
7 border-color: rgba(66, 133, 244, 0.4); /* #4284f4 */
8 border-radius: 2px;
9 border-style: solid;
10 border-width: 2px;
11 };
12 color: var(--google-blue-500);
13 font: var(--oobe-roboto-bold), sans-serif;
michaelpg 2016/11/14 21:25:18 font-family
Alexander Alekseev 2016/11/15 01:23:00 --oobe-roboto-bold defines not only font family, b
michaelpg 2016/11/16 01:50:28 Then maybe the sans-serif option should go there?
Alexander Alekseev 2016/11/16 02:16:52 To me it is more confusing to store several font o
14 font-size: 12px;
15 height: 32px; /* = 28 + border (2px + 2px) */
16 margin: 0;
17 min-width: 92px; /* = 88 + border (2px + 2px) */
18 padding: 0;
19 }
20
21 #button:not([focused]) {
22 border-color: transparent;
23 border-radius: 2px;
24 border-style: solid;
25 border-width: 2px;
26 }
27
28 #text {
29 -webkit-padding-end: 16px;
30 text-transform: none;
31 }
32
33 iron-icon {
34 --iron-icon-height: 12px;
35 --iron-icon-width: 12px;
36 -webkit-padding-end: 8px;
37 -webkit-padding-start: 16px;
38 }
39
40 #button[disabled] #text,
41 #button[disabled] iron-icon {
42 color: rgba(0, 0, 0, 0.34);
43 }
44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698