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/close_2.png') 1x, |
47 url('../../../../../ui/resources/default_200_percent/close_bar.png') 2x); | 47 url('../../../../../ui/resources/default_200_percent/close_2.png') 2x); |
flackr
2013/03/25 15:00:10
Sorry I missed these earlier. Here and elsewhere,
varkha
2013/03/25 15:44:00
Done.
| |
48 height: 16px; | 48 height: 16px; |
49 width: 16px; | 49 width: 16px; |
50 } | 50 } |
51 | 51 |
52 .remove-user-button:hover { | 52 .remove-user-button:hover { |
53 background-image: -webkit-image-set( | 53 background-image: -webkit-image-set( |
54 url('../../../../../ui/resources/default_100_percent/close_bar_hover.png') | 54 url('../../../../../ui/resources/default_100_percent/close_2_hover.png') 1x, |
55 1x, | 55 url('../../../../../ui/resources/default_200_percent/close_2_hover.png') 2x); |
56 url('../../../../../ui/resources/default_200_percent/close_bar_hover.png') | |
57 2x); | |
58 } | 56 } |
59 | 57 |
60 #userList { | 58 #userList { |
61 height: 166px; | 59 height: 166px; |
62 padding: 5px; | 60 padding: 5px; |
63 width: 366px; | 61 width: 366px; |
64 } | 62 } |
65 | 63 |
66 #userList[disabled], | 64 #userList[disabled], |
67 #userList[disabled] > [selected], | 65 #userList[disabled] > [selected], |
(...skipping 21 matching lines...) Expand all Loading... | |
89 background-repeat: no-repeat; | 87 background-repeat: no-repeat; |
90 margin-bottom: 10px; | 88 margin-bottom: 10px; |
91 margin-top: 10px; | 89 margin-top: 10px; |
92 min-height: 17px; | 90 min-height: 17px; |
93 padding-bottom: 1px; | 91 padding-bottom: 1px; |
94 } | 92 } |
95 | 93 |
96 input#userNameEdit:invalid { | 94 input#userNameEdit:invalid { |
97 background-color: rgb(255, 102, 102); | 95 background-color: rgb(255, 102, 102); |
98 } | 96 } |
OLD | NEW |