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

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: #999 instead of gray. 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 }
95
90 #profiles-list .profile-name { 96 #profiles-list .profile-name {
91 -webkit-box-flex: 1; 97 -webkit-box-flex: 1;
92 overflow: hidden; 98 overflow: hidden;
93 text-overflow: ellipsis; 99 text-overflow: ellipsis;
94 white-space: nowrap; 100 white-space: nowrap;
95 } 101 }
96 102
103 #profiles-list .profile-supervised {
104 color: #999;
105 margin-left: 5px;
106 }
107
97 #profiles-list > * { 108 #profiles-list > * {
98 height: 40px; 109 height: 40px;
99 } 110 }
100 111
101 #profiles-list:focus { 112 #profiles-list:focus {
102 border-color: rgb(77, 144, 254); 113 border-color: rgb(77, 144, 254);
103 } 114 }
104 115
105 .profile-img { 116 .profile-img {
106 height: 31px; 117 height: 31px;
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 } 433 }
423 434
424 #accessibility-autoclick .controlled-setting-with-label { 435 #accessibility-autoclick .controlled-setting-with-label {
425 -webkit-box-align: baseline; 436 -webkit-box-align: baseline;
426 } 437 }
427 438
428 #accessibility-autoclick label + select { 439 #accessibility-autoclick label + select {
429 /* Same as .controlled-setting-with-label > input + span. */ 440 /* Same as .controlled-setting-with-label > input + span. */
430 -webkit-margin-start: 0.6em; 441 -webkit-margin-start: 0.6em;
431 } 442 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698