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 .container { | |
6 font-size: 13px; | |
Dan Beam
2016/02/25 16:44:39
em or %
Moe
2016/03/02 18:03:17
For the same reason as in control_bar.css, I think
| |
7 margin: 64px auto; | |
8 width: 556px; | |
9 } | |
10 | |
11 #title-bar { | |
12 border-bottom: 1px solid rgba(0, 0, 0, .12); | |
13 font-size: 16px; | |
Dan Beam
2016/02/25 16:44:38
em or %
Moe
2016/03/02 18:03:17
ditto
| |
14 padding-bottom: 20px; | |
15 } | |
16 | |
17 #nameInput { | |
18 --paper-input-container-input: { | |
19 color: #333; | |
Dan Beam
2016/02/25 16:44:38
is there a --google-grey-* or --paper-grey-* equiv
Moe
2016/03/02 18:03:17
I went through all of them. The ones that are rema
| |
20 font-size: inherit; | |
21 }; | |
22 width: 300px; | |
23 } | |
24 | |
25 paper-dropdown-menu { | |
26 --paper-input-container-input: { | |
27 color: #333; | |
28 font-size: inherit; | |
29 }; | |
30 position: relative; | |
31 top: -1px; | |
32 width: 200px; | |
33 } | |
34 | |
35 #icons { | |
36 margin-top: 24px; | |
37 } | |
38 | |
39 #icons #wrapper { | |
40 margin: -12px -10px; | |
41 } | |
42 | |
43 #icons paper-button { | |
44 background: rgb(222, 222, 222); | |
45 border: 1px solid rgba(0, 0, 0, .12); | |
46 margin: 12px 10px; | |
47 min-width: 0; | |
48 padding: 6px 4px; | |
49 } | |
50 | |
51 #icons paper-button[active] { | |
52 border-color: var(--google-blue-500); | |
53 } | |
54 | |
55 #icons paper-button:focus:not([active]) { | |
56 outline: 1px dotted #666; | |
57 } | |
58 | |
59 #createSupervisedContainer { | |
60 color: #333; | |
61 margin-top: 10px; | |
62 } | |
63 | |
64 #messageBubble { | |
65 -webkit-transition: max-height 200ms, padding 200ms; | |
66 background-color: rgb(238, 185, 57); | |
67 border-radius: 4px; | |
68 font-weight: bold; | |
69 margin-left: auto; | |
70 margin-right: auto; | |
71 margin-top: 16px; | |
72 max-height: 50px; | |
73 overflow: hidden; | |
74 padding: 10px 10px; | |
75 text-align: center; | |
76 width: 80%; | |
77 } | |
78 | |
79 #messageBubble:empty { | |
80 display: none; | |
81 } | |
82 | |
83 #actions { | |
84 margin-top: 32px; | |
85 } | |
86 | |
87 #actions paper-button { | |
88 border-radius: 2px; | |
89 line-height: 32px; | |
90 min-width: 52px; | |
91 padding: 0 16px; | |
92 } | |
93 | |
94 #cancel-button { | |
95 color: rgb(90, 90, 90); | |
96 } | |
97 | |
98 #ok-button { | |
99 -webkit-margin-end: 0; | |
100 background: var(--google-blue-500); | |
101 color: #fff; | |
102 } | |
103 | |
104 #ok-button[disabled] { | |
105 background: rgba(66, 133, 244, .5); | |
106 } | |
OLD | NEW |