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

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

Issue 698433003: Desktop User Manager: Use new Material icons for "locked" and "supervised". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 2013 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 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 .pod .user-image { 67 .pod .user-image {
68 height: 180px; 68 height: 180px;
69 width: 180px; 69 width: 180px;
70 } 70 }
71 71
72 .pod input[type='password'] { 72 .pod input[type='password'] {
73 height: 45px; /* 1px shorter as to not overlap the pod's rounded corners */ 73 height: 45px; /* 1px shorter as to not overlap the pod's rounded corners */
74 top: 1px; 74 top: 1px;
75 } 75 }
76 76
77 .pod .indicator-container {
78 background-color: rgba(255, 255, 255, 0.85);
79 border-radius: 16px;
80 height: 32px;
81 left: 8px;
82 position: absolute;
83 top: 8px;
84 }
85
86 html[dir=rtl] .pod .indicators {
87 left: auto;
88 right: 8px;
89 }
90
91 .pod .indicator {
92 background-position: center;
93 background-repeat: no-repeat;
94 display: none;
95 float: left;
96 height: 32px;
97 width: 32px;
98 }
99
77 .pod.locked .locked-indicator { 100 .pod.locked .locked-indicator {
78 background-image: -webkit-image-set( 101 background-image: -webkit-image-set(
79 url('chrome://theme/IDR_ICON_PROFILES_LOCKED') 1x, 102 url('chrome://theme/IDR_ICON_PROFILES_LOCKED') 1x,
80 url('chrome://theme/IDR_ICON_PROFILES_LOCKED@2x') 2x); 103 url('chrome://theme/IDR_ICON_PROFILES_LOCKED@2x') 2x);
81 height: 31px; 104 display: initial;
82 left: 8px;
83 position: absolute;
84 top: 8px;
85 width: 31px;
86 }
87
88 html[dir=rtl] .pod.locked .locked-indicator {
89 left: auto;
90 right: 8px;
91 } 105 }
92 106
93 .pod.supervised-user .supervised-indicator { 107 .pod.supervised-user .supervised-indicator {
94 background-image: -webkit-image-set( 108 background-image: -webkit-image-set(
95 url('chrome://theme/IDR_ICON_PROFILES_SUPERVISED') 1x, 109 url('chrome://theme/IDR_ICON_PROFILES_SUPERVISED') 1x,
96 url('chrome://theme/IDR_ICON_PROFILES_SUPERVISED@2x') 2x); 110 url('chrome://theme/IDR_ICON_PROFILES_SUPERVISED@2x') 2x);
97 height: 31px; 111 display: initial;
98 left: 8px;
99 position: absolute;
100 top: 8px;
101 width: 31px;
102 }
103
104 html[dir=rtl] .pod.supervised-user .supervised-indicator {
105 left: auto;
106 right: 8px;
107 } 112 }
108 113
109 .main-pane { 114 .main-pane {
110 left: 0; 115 left: 0;
111 top: 0; 116 top: 0;
112 } 117 }
113 118
114 html[dir=rtl] .main-pane { 119 html[dir=rtl] .main-pane {
115 right: 0; 120 right: 0;
116 } 121 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 .action-box-remove-user-warning .remove-warning-button { 177 .action-box-remove-user-warning .remove-warning-button {
173 height: 30px; 178 height: 30px;
174 } 179 }
175 180
176 .action-box-remove-user-warning .remove-warning-button:focus { 181 .action-box-remove-user-warning .remove-warning-button:focus {
177 /* Override the default blue border inherited from 182 /* Override the default blue border inherited from
178 button.custom-appearance:focus. */ 183 button.custom-appearance:focus. */
179 border: 1px solid transparent !important; 184 border: 1px solid transparent !important;
180 box-shadow: inset 0 0 0 1px #fff; 185 box-shadow: inset 0 0 0 1px #fff;
181 } 186 }
OLDNEW
« no previous file with comments | « chrome/app/theme/default_200_percent/common/icon_supervised.png ('k') | ui/login/account_picker/user_pod_template.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698