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

Side by Side Diff: chrome/browser/resources/options/browser_options.css

Issue 222143002: Mark supervised users in the "Users" list in about:settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Aaand now without "display: flex"! Created 6 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #change-home-page-section { 5 #change-home-page-section {
6 margin-left: 30px; 6 margin-left: 30px;
7 } 7 }
8 8
9 #home-page-url { 9 #home-page-url {
10 display: inline-block; 10 display: inline-block;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 #sync-buttons { 81 #sync-buttons {
82 clear: both; 82 clear: both;
83 } 83 }
84 84
85 #profiles-list { 85 #profiles-list {
86 margin-bottom: 10px; 86 margin-bottom: 10px;
87 min-height: 0; 87 min-height: 0;
88 } 88 }
89 89
90 #profiles-list .profile-container {
91 -webkit-box-align: center;
92 display: -webkit-box;
93 max-width: 100%;
94 white-space: nowrap;
Patrick Dubroy 2014/04/03 10:48:39 I don't think you need this.
Marc Treib 2014/04/03 11:41:56 Done.
95 }
96
90 #profiles-list .profile-name { 97 #profiles-list .profile-name {
91 -webkit-box-flex: 1; 98 -webkit-box-flex: 1;
92 overflow: hidden; 99 overflow: hidden;
93 text-overflow: ellipsis; 100 text-overflow: ellipsis;
94 white-space: nowrap; 101 white-space: nowrap;
95 } 102 }
96 103
104 #profiles-list .profile-supervised {
105 color: gray;
Patrick Dubroy 2014/04/03 10:48:39 I don't see "gray" anywhere else in this file. Usu
Marc Treib 2014/04/03 11:41:56 I don't see another "gray for de-emphasis" anywher
Patrick Dubroy 2014/04/03 11:48:38 Actually, we seem to use #999 in a few places (e.g
Marc Treib 2014/04/03 12:01:08 Done.
106 margin-left: 5px;
107 white-space: nowrap;
Patrick Dubroy 2014/04/03 10:48:39 Ditto.
Marc Treib 2014/04/03 11:41:56 Done.
108 }
109
97 #profiles-list > * { 110 #profiles-list > * {
98 height: 40px; 111 height: 40px;
99 } 112 }
100 113
101 #profiles-list:focus { 114 #profiles-list:focus {
102 border-color: rgb(77, 144, 254); 115 border-color: rgb(77, 144, 254);
103 } 116 }
104 117
105 .profile-img { 118 .profile-img {
106 height: 31px; 119 height: 31px;
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 } 435 }
423 436
424 #accessibility-autoclick .controlled-setting-with-label { 437 #accessibility-autoclick .controlled-setting-with-label {
425 -webkit-box-align: baseline; 438 -webkit-box-align: baseline;
426 } 439 }
427 440
428 #accessibility-autoclick label + select { 441 #accessibility-autoclick label + select {
429 /* Same as .controlled-setting-with-label > input + span. */ 442 /* Same as .controlled-setting-with-label > input + span. */
430 -webkit-margin-start: 0.6em; 443 -webkit-margin-start: 0.6em;
431 } 444 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698