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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 visibility: hidden; | 78 visibility: hidden; |
79 } | 79 } |
80 | 80 |
81 #userNameEdit { | 81 #userNameEdit { |
82 border: 1px solid lightgrey; | 82 border: 1px solid lightgrey; |
83 width: 366px; | 83 width: 366px; |
84 } | 84 } |
85 | 85 |
86 #ownerOnlyWarning { | 86 #ownerOnlyWarning { |
87 -webkit-padding-start: 20px; | 87 -webkit-padding-start: 20px; |
88 background-image: url('../../options/chromeos/warning.png'); | 88 background-image: url('warning.png'); |
89 background-repeat: no-repeat; | 89 background-repeat: no-repeat; |
90 margin-bottom: 10px; | 90 margin-bottom: 10px; |
91 margin-top: 10px; | 91 margin-top: 10px; |
92 padding-bottom: 1px; | 92 padding-bottom: 1px; |
93 } | 93 } |
94 | 94 |
95 input#userNameEdit:invalid { | 95 input#userNameEdit:invalid { |
96 background-color: rgb(255, 102, 102); | 96 background-color: rgb(255, 102, 102); |
97 } | 97 } |
OLD | NEW |