OLD | NEW |
1 .user-list-table { | 1 .user-list-table { |
2 border: 1px solid lightgrey; | 2 border: 1px solid lightgrey; |
3 border-collapse: collapse; | 3 border-collapse: collapse; |
4 border-spacing: 0; | 4 border-spacing: 0; |
5 } | 5 } |
6 | 6 |
7 .user-name-edit-row { | 7 .user-name-edit-row { |
8 border: 1px solid lightgrey; | 8 border: 1px solid lightgrey; |
9 background-color: #ebeffa; | 9 background-color: #ebeffa; |
10 padding: 5px; | 10 padding: 5px; |
(...skipping 20 matching lines...) Expand all Loading... |
31 | 31 |
32 .user-email-name-block { | 32 .user-email-name-block { |
33 -webkit-box-flex: 1; | 33 -webkit-box-flex: 1; |
34 max-width: 318px; | 34 max-width: 318px; |
35 overflow: hidden; | 35 overflow: hidden; |
36 text-overflow: ellipsis; | 36 text-overflow: ellipsis; |
37 white-space: nowrap; | 37 white-space: nowrap; |
38 } | 38 } |
39 | 39 |
40 .remove-user-button { | 40 .remove-user-button { |
41 background-image: url(chrome://theme/IDR_CLOSE_BAR); | 41 background-image: url('../../../../../ui/resources/close_bar.png'); |
42 width: 16px; | 42 width: 16px; |
43 height: 16px; | 43 height: 16px; |
44 } | 44 } |
45 | 45 |
46 .remove-user-button:hover { | 46 .remove-user-button:hover { |
47 background-image: url(chrome://theme/IDR_CLOSE_BAR_H); | 47 background-image: url('../../../../../ui/resources/close_bar_h.png'); |
48 } | 48 } |
49 | 49 |
50 #userList { | 50 #userList { |
51 padding: 5px; | 51 padding: 5px; |
52 width: 366px; | 52 width: 366px; |
53 height: 166px; | 53 height: 166px; |
54 } | 54 } |
55 | 55 |
56 #userList[disabled], | 56 #userList[disabled], |
57 #userList[disabled] > [selected], | 57 #userList[disabled] > [selected], |
(...skipping 20 matching lines...) Expand all Loading... |
78 margin-bottom: 10px; | 78 margin-bottom: 10px; |
79 padding-bottom: 1px; | 79 padding-bottom: 1px; |
80 -webkit-padding-start: 20px; | 80 -webkit-padding-start: 20px; |
81 background-repeat: no-repeat; | 81 background-repeat: no-repeat; |
82 background-image: url('warning.png'); | 82 background-image: url('warning.png'); |
83 } | 83 } |
84 | 84 |
85 input#userNameEdit:invalid { | 85 input#userNameEdit:invalid { |
86 background-color: #ff6666; | 86 background-color: #ff6666; |
87 } | 87 } |
OLD | NEW |