| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 #supervised-user-import { | 5 #supervised-user-import { |
| 6 width: 612px; | 6 width: 612px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #supervised-user-import-text, | 9 #supervised-user-import-text, |
| 10 #supervised-user-select-avatar-text { | 10 #supervised-user-select-avatar-text { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #supervised-user-list .profile-img { | 27 #supervised-user-list .profile-img { |
| 28 flex-shrink: 0; | 28 flex-shrink: 0; |
| 29 } | 29 } |
| 30 | 30 |
| 31 #supervised-user-list .profile-name { | 31 #supervised-user-list .profile-name { |
| 32 overflow: hidden; | 32 overflow: hidden; |
| 33 text-overflow: ellipsis; | 33 text-overflow: ellipsis; |
| 34 white-space: nowrap; | 34 white-space: nowrap; |
| 35 } | 35 } |
| 36 | 36 |
| 37 #supervised-user-list .already-on-this-device { |
| 38 flex-shrink: 0; |
| 39 } |
| 40 |
| 37 #supervised-user-list > * { | 41 #supervised-user-list > * { |
| 38 height: 40px; | 42 height: 40px; |
| 39 } | 43 } |
| 40 | 44 |
| 41 #supervised-user-list:focus { | 45 #supervised-user-list:focus { |
| 42 border-color: rgb(77, 144, 254); | 46 border-color: rgb(77, 144, 254); |
| 43 } | 47 } |
| 44 | 48 |
| 45 #select-avatar-grid { | 49 #select-avatar-grid { |
| 46 background-color: rgba(255, 255, 255, 0.75); | 50 background-color: rgba(255, 255, 255, 0.75); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 71 } | 75 } |
| 72 | 76 |
| 73 .profile-name-disabled { | 77 .profile-name-disabled { |
| 74 color: rgb(153, 153, 153); | 78 color: rgb(153, 153, 153); |
| 75 } | 79 } |
| 76 | 80 |
| 77 .already-on-this-device { | 81 .already-on-this-device { |
| 78 padding-left: 20px; | 82 padding-left: 20px; |
| 79 padding-right: 6px; | 83 padding-right: 6px; |
| 80 } | 84 } |
| OLD | NEW |