OLD | NEW |
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 Loading... |
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 } | |
OLD | NEW |