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

Side by Side Diff: chrome/browser/resources/md_user_manager/create_profile.css

Issue 1932403002: MD User Manager: Removes external style sheets in Polymer components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 .container {
6 color: var(--paper-grey-800);
7 margin: 0 auto;
8 width: 624px;
9 }
10
11 #message-container {
12 background-color: var(--google-red-700);
13 color: white;
14 left: 0;
15 overflow: hidden;
16 padding: 10px 16px;
17 position: absolute;
18 right: 0;
19 top: 0;
20 }
21
22 #message-container iron-icon {
23 --iron-icon-height: 20px;
24 --iron-icon-width: 20px;
25 }
26
27 #message-container #message {
28 -webkit-margin-start: 16px;
29 }
30
31 #message-container #supervised-user-import-existing {
32 color: inherit;
33 text-decoration: underline;
34 }
35
36 #title-bar {
37 border-bottom: 1px solid rgba(0, 0, 0, .12);
38 font-size: 16px;
39 font-weight: 500;
40 padding: 104px 0 16px;
41 }
42
43 #nameInput,
44 paper-dropdown-menu {
45 --paper-input-container: {
46 padding: 0;
47 };
48 --paper-input-container-input: {
49 color: inherit;
50 font-size: inherit;
51 };
52 }
53
54 #nameInput {
55 margin-bottom: 24px;
56 margin-top: 32px;
57 width: 300px;
58 }
59
60 paper-dropdown-menu {
61 margin-top: 12px;
62 width: 200px;
63 }
64
65 paper-menu {
66 --paper-menu: {
67 color: inherit;
68 padding: 0;
69 };
70 --paper-menu-selected-item: {
71 font-weight: normal;
72 }
73 }
74
75 paper-menu paper-item {
76 font-size: inherit;
77 min-height: 40px;
78 }
79
80 #icons #wrapper {
81 display: flex;
82 flex-wrap: wrap;
83 margin: -12px;
84 }
85
86 #icons paper-button {
87 background: var(--paper-grey-300);
88 border: 1px solid rgba(0, 0, 0, .12);
89 margin: 12px;
90 min-width: 0;
91 padding: 6px 4px;
92 }
93
94 #icons paper-button[active] {
95 border-color: var(--google-blue-500);
96 }
97
98 #icons paper-button:focus:not([active]) {
99 outline: 1px dotted #666;
100 }
101
102 #supervised-user-container {
103 margin-top: 24px;
104 }
105
106 #supervised-user-container paper-checkbox {
107 --paper-checkbox-label-spacing: 16px;
108 --paper-checkbox-size: 20px;
109 }
110
111 #supervised-user-container #learn-more-accounts {
112 -webkit-margin-start: 36px;
113 }
114
115 #supervised-user-container #learn-more {
116 display: block;
117 line-height: 20px;
118 }
119
120 #supervised-user-container #import-user {
121 -webkit-margin-start: 16px;
122 }
123
124 #actions {
125 bottom: 16px;
126 display: flex;
127 position: absolute;
128 right: 16px;
129 }
130
131 :host-context([dir='rtl']) #actions {
132 left: 16px;
133 right: auto;
134 }
135
136 #actions paper-button {
137 border-radius: 2px;
138 font-weight: 500;
139 line-height: 32px;
140 margin: 0;
141 min-width: 52px;
142 padding: 0 16px;
143 }
144
145 #actions paper-spinner {
146 align-self: center;
147 height: 20px;
148 width: 20px;
149 }
150
151 #actions #cancel {
152 color: var(--paper-grey-600);
153 }
154
155 #actions #save {
156 -webkit-margin-start: 8px;
157 background: var(--google-blue-500);
158 color: white;
159 }
160
161 #actions #save[disabled] {
162 background: rgba(66, 133, 244, .5);
163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698