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

Side by Side Diff: chrome/browser/resources/options2/chromeos/accounts_options_page.css

Issue 9464053: Hide/Disable several (meaningless) options in Settings uber-page for Guest. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Nit fixes + merge with TOT + gray out labels for disabled elements Created 8 years, 9 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 (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 .user-list-table { 5 .user-list-table {
6 border: 1px solid lightgrey; 6 border: 1px solid lightgrey;
7 border-collapse: collapse; 7 border-collapse: collapse;
8 border-spacing: 0; 8 border-spacing: 0;
9 } 9 }
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 background-image: url('warning.png'); 82 background-image: url('warning.png');
83 background-repeat: no-repeat; 83 background-repeat: no-repeat;
84 margin-bottom: 10px; 84 margin-bottom: 10px;
85 margin-top: 10px; 85 margin-top: 10px;
86 padding-bottom: 1px; 86 padding-bottom: 1px;
87 } 87 }
88 88
89 input#userNameEdit:invalid { 89 input#userNameEdit:invalid {
90 background-color: rgb(255, 102, 102); 90 background-color: rgb(255, 102, 102);
91 } 91 }
92
93 h3.guest-disabled {
James Hawkins 2012/03/01 20:00:19 Combine all of these: h3.guest-disabled, span.gue
Denis Kuznetsov (DE-MUC) 2012/03/02 17:32:25 Done.
94 color: gray;
95 }
96
97 span.guest-disabled {
98 color: gray;
99 }
100
101 label.guest-disabled {
102 color: gray;
103 }
104 a.guest-disabled {
James Hawkins 2012/03/01 20:00:19 Blank line before this.
Denis Kuznetsov (DE-MUC) 2012/03/02 17:32:25 Done.
105 opacity: 0.9
106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698