OLD | NEW |
---|---|
(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 | |
6 .container { | |
7 margin: 64px auto; | |
8 width: 556px; | |
9 } | |
10 | |
11 #title-bar { | |
12 border-bottom: 1px solid rgba(0, 0, 0, .12); | |
13 font-family: Roboto; | |
14 font-size: 16px; | |
15 padding-bottom: 20px; | |
16 } | |
17 | |
18 #nameInput { | |
19 --paper-input-container-input: { | |
20 color: #333; | |
Dan Beam
2016/02/12 23:42:24
should most of these colors be using a --google or
Moe
2016/02/20 00:20:59
Ah! I didn't know those variables existed. Will re
| |
21 font-family: Roboto; | |
Dan Beam
2016/02/12 23:42:24
nit: font: inherit; for both of these just makes t
Moe
2016/02/20 00:20:59
Done.
| |
22 font-size: 13px; | |
23 }; | |
24 width: 300px; | |
25 } | |
26 | |
27 paper-dropdown-menu { | |
28 --paper-input-container-input: { | |
29 color: #333; | |
30 font-family: Roboto; | |
31 font-size: 13px; | |
32 }; | |
33 position: relative; | |
34 top: -1px; | |
35 width: 200px; | |
36 } | |
37 | |
38 #icons { | |
39 margin-top: 24px; | |
40 } | |
41 | |
42 #icons #wrapper { | |
43 margin: -12px -10px; | |
44 } | |
45 | |
46 #icons paper-button { | |
47 background: rgb(222, 222, 222); | |
48 border: 1px solid rgba(0, 0, 0, .12); | |
49 margin: 12px 10px; | |
50 min-width: 0; | |
51 padding: 6px 4px 6px 4px; | |
Dan Beam
2016/02/12 23:42:24
padding: 6px 4px;
Moe
2016/02/20 00:20:59
Done.
| |
52 } | |
53 | |
54 #icons paper-button[active] { | |
55 border-color: rgb(66, 133, 244); | |
56 } | |
57 | |
58 #icons paper-button:focus:not([active]) { | |
59 outline: 1px dotted #666; | |
60 } | |
61 | |
62 #createSupervisedContainer { | |
63 color: #333; | |
64 font-family: Roboto; | |
65 font-size: 13px; | |
66 margin-top: 10px; | |
67 } | |
68 | |
69 #messageBubble { | |
70 -webkit-transition: max-height 200ms, padding 200ms; | |
71 background-color: rgb(238, 185, 57); | |
72 border-radius: 4px; | |
73 font-weight: bold; | |
74 margin-left: auto; | |
75 margin-right: auto; | |
76 margin-top: 16px; | |
77 max-height: 50px; | |
78 overflow: hidden; | |
79 padding: 10px 10px; | |
80 text-align: center; | |
81 width: 80%; | |
82 } | |
83 | |
84 #messageBubble:empty { | |
85 display: none; | |
86 } | |
87 | |
88 #actions { | |
89 margin-top: 32px; | |
90 } | |
91 | |
92 #actions paper-button { | |
93 border-radius: 2px; | |
94 font-size: 13px; | |
95 line-height: 32px; | |
96 min-width: 52px; | |
97 padding: 0 16px; | |
98 } | |
99 | |
100 #cancel-button { | |
101 color: rgb(90, 90, 90); | |
102 } | |
103 | |
104 #ok-button { | |
105 -webkit-margin-end: 0; | |
106 background: rgb(66, 133, 244); | |
107 color: #fff; | |
108 } | |
109 | |
110 #ok-button[disabled] { | |
111 background: rgba(66, 133, 244, .5); | |
112 } | |
OLD | NEW |