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 |
11 .user-name-edit-row { | 11 .user-name-edit-row { |
12 background-color: rgb(235, 239, 250); | 12 background-color: rgb(235, 239, 250); |
13 border: 1px solid lightgrey; | 13 border: 1px solid lightgrey; |
14 padding: 5px; | 14 padding: 5px; |
15 } | 15 } |
16 | 16 |
17 .user-list-item { | 17 .user-list-item { |
18 padding: 2px; | 18 padding: 2px; |
19 } | 19 } |
20 | 20 |
21 .user-icon { | 21 .user-icon { |
22 border: 1px solid black; | 22 border: 1px solid black; |
23 height: 26px; | 23 height: 26px; |
24 width: 26px; | 24 width: 26px; |
25 } | 25 } |
26 | 26 |
27 .user-email-label { | 27 .user-email-label, |
| 28 .user-name-label { |
28 -webkit-margin-start: 10px; | 29 -webkit-margin-start: 10px; |
29 } | 30 } |
30 | 31 |
31 .user-name-label { | |
32 -webkit-margin-start: 10px; | |
33 color: darkgray; | |
34 } | |
35 | |
36 .user-email-name-block { | 32 .user-email-name-block { |
37 -webkit-box-flex: 1; | 33 -webkit-box-flex: 1; |
38 max-width: 318px; | 34 max-width: 318px; |
39 overflow: hidden; | 35 overflow: hidden; |
40 text-overflow: ellipsis; | 36 text-overflow: ellipsis; |
41 white-space: nowrap; | 37 white-space: nowrap; |
42 } | 38 } |
43 | 39 |
44 .remove-user-button { | 40 .remove-user-button { |
45 background-image: -webkit-image-set( | 41 background-image: -webkit-image-set( |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 background-repeat: no-repeat; | 85 background-repeat: no-repeat; |
90 margin-bottom: 10px; | 86 margin-bottom: 10px; |
91 margin-top: 10px; | 87 margin-top: 10px; |
92 min-height: 17px; | 88 min-height: 17px; |
93 padding-bottom: 1px; | 89 padding-bottom: 1px; |
94 } | 90 } |
95 | 91 |
96 input#userNameEdit:invalid { | 92 input#userNameEdit:invalid { |
97 background-color: rgb(255, 102, 102); | 93 background-color: rgb(255, 102, 102); |
98 } | 94 } |
OLD | NEW |