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

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

Issue 1901853002: Import supervised user dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-confirmation-page
Patch Set: Addressed comments + rebase Created 4 years, 8 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
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 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 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 .container { 5 .container {
6 color: var(--paper-grey-800); 6 color: var(--paper-grey-800);
7 margin: 0 auto; 7 margin: 0 auto;
8 width: 624px; 8 width: 624px;
9 } 9 }
10 10
11 #message-container { 11 #message-container {
12 background-color: var(--google-red-700); 12 background-color: var(--google-red-700);
13 color: white; 13 color: white;
14 left: 0; 14 left: 0;
15 overflow: hidden; 15 overflow: hidden;
16 padding: 10px 16px; 16 padding: 10px 16px;
17 position: absolute; 17 position: absolute;
18 right: 0; 18 right: 0;
19 top: 0; 19 top: 0;
20 } 20 }
21 21
22 #message-container iron-icon { 22 #message-container iron-icon {
23 height: 20px; 23 --iron-icon-height: 20px;
24 width: 20px; 24 --iron-icon-width: 20px;
25 } 25 }
26 26
27 #message-container #message { 27 #message-container #message {
28 -webkit-margin-start: 16px; 28 -webkit-margin-start: 16px;
29 } 29 }
30 30
31 #message-container #supervised-user-import-existing { 31 #message-container #supervised-user-import-existing {
32 color: inherit; 32 color: inherit;
33 text-decoration: underline; 33 text-decoration: underline;
34 } 34 }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 #supervised-user-container #learn-more-accounts { 111 #supervised-user-container #learn-more-accounts {
112 -webkit-margin-start: 36px; 112 -webkit-margin-start: 36px;
113 } 113 }
114 114
115 #supervised-user-container #learn-more { 115 #supervised-user-container #learn-more {
116 display: block; 116 display: block;
117 line-height: 20px; 117 line-height: 20px;
118 } 118 }
119 119
120 #supervised-user-container #import-user {
121 -webkit-margin-start: 16px;
122 }
123
120 #actions { 124 #actions {
121 bottom: 16px; 125 bottom: 16px;
122 display: flex; 126 display: flex;
123 position: absolute; 127 position: absolute;
124 right: 16px; 128 right: 16px;
125 } 129 }
126 130
127 :host-context([dir='rtl']) #actions { 131 :host-context([dir='rtl']) #actions {
128 left: 16px; 132 left: 16px;
129 right: auto; 133 right: auto;
(...skipping 20 matching lines...) Expand all
150 154
151 #actions #save { 155 #actions #save {
152 -webkit-margin-start: 8px; 156 -webkit-margin-start: 8px;
153 background: var(--google-blue-500); 157 background: var(--google-blue-500);
154 color: white; 158 color: white;
155 } 159 }
156 160
157 #actions #save[disabled] { 161 #actions #save[disabled] {
158 background: rgba(66, 133, 244, .5); 162 background: rgba(66, 133, 244, .5);
159 } 163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698