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

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

Issue 10006028: Plugins page in BWSI session has unnecessary and misleading UI components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit fix Created 8 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 .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,
94 span.guest-disabled,
95 label.guest-disabled {
96 color: gray;
97 }
98
99 a.guest-disabled {
100 opacity: 0.9
101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698