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

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

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments Created 4 years, 10 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 2013 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 5
6 /* Overrides for the desktop user manager screen. */ 6 /* Overrides for the desktop user manager screen. */
7 7
8 .oobe-display { 8 .oobe-display {
9 background-color: #eee; 9 background-color: #eee;
10 } 10 }
11 11
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 /* Using -webkit-mask on the indicators allows us to tweak the color. */ 109 /* Using -webkit-mask on the indicators allows us to tweak the color. */
110 .pod .indicator-container > div { 110 .pod .indicator-container > div {
111 -webkit-mask-position: center; 111 -webkit-mask-position: center;
112 -webkit-mask-repeat: no-repeat; 112 -webkit-mask-repeat: no-repeat;
113 -webkit-mask-size: 24px; 113 -webkit-mask-size: 24px;
114 } 114 }
115 115
116 .pod.locked .locked-indicator { 116 .pod.locked .locked-indicator {
117 -webkit-mask-image: url(../../../../ui/webui/resources/images/lock.svg); 117 -webkit-mask-image: url(../../../../ui/webui/resources/images/lock.svg);
118 background-color: #757575; 118 background-color: rgb(117, 117, 117);
Dan Beam 2016/02/12 23:42:24 why are you doing this? grey hex are OK
Moe 2016/02/20 00:20:59 tommycli@ suggested colors that need more than 3 d
119 display: initial; 119 display: initial;
120 } 120 }
121 121
122 .pod.legacy-supervised .legacy-supervised-indicator { 122 .pod.legacy-supervised .legacy-supervised-indicator {
123 -webkit-mask-image: 123 -webkit-mask-image:
124 url(../../../../ui/webui/resources/images/supervisor_account.svg); 124 url(../../../../ui/webui/resources/images/supervisor_account.svg);
125 background-color: rgb(66, 133, 244); 125 background-color: rgb(66, 133, 244);
126 display: initial; 126 display: initial;
127 } 127 }
128 128
(...skipping 17 matching lines...) Expand all
146 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { 146 .pod.focused:not(.multiprofiles-policy-applied) .auth-container {
147 top: 180px; 147 top: 180px;
148 width: 180px; 148 width: 180px;
149 } 149 }
150 150
151 .pod.focused:not(.locked) .name-container { 151 .pod.focused:not(.locked) .name-container {
152 display: block; 152 display: block;
153 } 153 }
154 154
155 .pod .name { 155 .pod .name {
156 color: #363636; 156 color: rgb(54, 54, 54);
157 font-size: 15px; 157 font-size: 15px;
158 margin-top: 11px; 158 margin-top: 11px;
159 } 159 }
160 160
161 .pod.focused:not(.locked) .auth-container { 161 .pod.focused:not(.locked) .auth-container {
162 display: none; 162 display: none;
163 } 163 }
164 164
165 .pod[auth-type='offlinePassword'].focused.locked .password-entry-container { 165 .pod[auth-type='offlinePassword'].focused.locked .password-entry-container {
166 display: flex; 166 display: flex;
167 flex: auto; 167 flex: auto;
168 } 168 }
169 169
170 .action-box-area { 170 .action-box-area {
171 background-color: #f5f5f5; 171 background-color: rgb(245, 245, 245);
172 height: 24px; 172 height: 24px;
173 /* Because of crbug.com/406529, the text in the .name div is janky if there's 173 /* Because of crbug.com/406529, the text in the .name div is janky if there's
174 an opacity transition in this div. */ 174 an opacity transition in this div. */
175 transition: none; 175 transition: none;
176 width: 24px; 176 width: 24px;
177 } 177 }
178 178
179 .action-box-button, 179 .action-box-button,
180 .action-box-button:hover, 180 .action-box-button:hover,
181 .action-box-area.active .action-box-button { 181 .action-box-area.active .action-box-button {
(...skipping 17 matching lines...) Expand all
199 .action-box-remove-user-warning .remove-warning-button { 199 .action-box-remove-user-warning .remove-warning-button {
200 height: 30px; 200 height: 30px;
201 } 201 }
202 202
203 .action-box-remove-user-warning .remove-warning-button:focus { 203 .action-box-remove-user-warning .remove-warning-button:focus {
204 /* Override the default blue border inherited from 204 /* Override the default blue border inherited from
205 button.custom-appearance:focus. */ 205 button.custom-appearance:focus. */
206 border: 1px solid transparent !important; 206 border: 1px solid transparent !important;
207 box-shadow: inset 0 0 0 1px #fff; 207 box-shadow: inset 0 0 0 1px #fff;
208 } 208 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698