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 25 matching lines...) Expand all Loading... |
36 .user-email-name-block { | 36 .user-email-name-block { |
37 -webkit-box-flex: 1; | 37 -webkit-box-flex: 1; |
38 max-width: 318px; | 38 max-width: 318px; |
39 overflow: hidden; | 39 overflow: hidden; |
40 text-overflow: ellipsis; | 40 text-overflow: ellipsis; |
41 white-space: nowrap; | 41 white-space: nowrap; |
42 } | 42 } |
43 | 43 |
44 .remove-user-button { | 44 .remove-user-button { |
45 background-image: -webkit-image-set( | 45 background-image: -webkit-image-set( |
46 url('../../../../../ui/resources/default_100_percent/close_bar.png') 1x, | 46 url('../../../../../ui/resources/default_100_percent/button_close_2_normal.png') |
47 url('../../../../../ui/resources/default_200_percent/close_bar.png') 2x); | 47 1x, |
| 48 url('../../../../../ui/resources/default_200_percent/button_close_2_normal.png') |
| 49 2x); |
48 height: 16px; | 50 height: 16px; |
49 width: 16px; | 51 width: 16px; |
50 } | 52 } |
51 | 53 |
52 .remove-user-button:hover { | 54 .remove-user-button:hover { |
53 background-image: -webkit-image-set( | 55 background-image: -webkit-image-set( |
54 url('../../../../../ui/resources/default_100_percent/close_bar_hover.png') | 56 url('../../../../../ui/resources/default_100_percent/button_close_2_hover.png') |
55 1x, | 57 1x, |
56 url('../../../../../ui/resources/default_200_percent/close_bar_hover.png') | 58 url('../../../../../ui/resources/default_200_percent/button_close_2_hover.png') |
57 2x); | 59 2x); |
58 } | 60 } |
59 | 61 |
60 #userList { | 62 #userList { |
61 height: 166px; | 63 height: 166px; |
62 padding: 5px; | 64 padding: 5px; |
63 width: 366px; | 65 width: 366px; |
64 } | 66 } |
65 | 67 |
66 #userList[disabled], | 68 #userList[disabled], |
67 #userList[disabled] > [selected], | 69 #userList[disabled] > [selected], |
(...skipping 21 matching lines...) Expand all Loading... |
89 background-repeat: no-repeat; | 91 background-repeat: no-repeat; |
90 margin-bottom: 10px; | 92 margin-bottom: 10px; |
91 margin-top: 10px; | 93 margin-top: 10px; |
92 min-height: 17px; | 94 min-height: 17px; |
93 padding-bottom: 1px; | 95 padding-bottom: 1px; |
94 } | 96 } |
95 | 97 |
96 input#userNameEdit:invalid { | 98 input#userNameEdit:invalid { |
97 background-color: rgb(255, 102, 102); | 99 background-color: rgb(255, 102, 102); |
98 } | 100 } |
OLD | NEW |