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); |
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') |
55 1x, | 55 1x, |
56 url('../../../../../ui/resources/default_200_percent/close_bar_hover.png') | 56 url('../../../../../ui/resources/default_200_percent/close_2_hover.png') |
57 2x); | 57 2x); |
58 } | 58 } |
59 | 59 |
60 #userList { | 60 #userList { |
61 height: 166px; | 61 height: 166px; |
62 padding: 5px; | 62 padding: 5px; |
63 width: 366px; | 63 width: 366px; |
64 } | 64 } |
65 | 65 |
66 #userList[disabled], | 66 #userList[disabled], |
(...skipping 22 matching lines...) Expand all Loading... |
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 min-height: 17px; | 92 min-height: 17px; |
93 padding-bottom: 1px; | 93 padding-bottom: 1px; |
94 } | 94 } |
95 | 95 |
96 input#userNameEdit:invalid { | 96 input#userNameEdit:invalid { |
97 background-color: rgb(255, 102, 102); | 97 background-color: rgb(255, 102, 102); |
98 } | 98 } |
OLD | NEW |