| 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 { |
| 11 padding-bottom: 10px; | 11 padding-bottom: 10px; |
| 12 padding-left: 17px; | 12 padding-left: 17px; |
| 13 white-space: pre-wrap; | 13 white-space: pre-wrap; |
| 14 word-wrap: break-word; | 14 word-wrap: break-word; |
| 15 } | 15 } |
| 16 | 16 |
| 17 #supervised-user-list { | 17 #supervised-user-list { |
| 18 height: 240px; | 18 height: 240px; |
| 19 margin-bottom: 10px; | 19 margin-bottom: 10px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 #supervised-user-list .list-item { |
| 23 align-items: center; |
| 24 display: flex; |
| 25 } |
| 26 |
| 27 #supervised-user-list .profile-img { |
| 28 flex-shrink: 0; |
| 29 } |
| 30 |
| 22 #supervised-user-list .profile-name { | 31 #supervised-user-list .profile-name { |
| 23 flex: 1; | |
| 24 overflow: hidden; | 32 overflow: hidden; |
| 25 text-overflow: ellipsis; | 33 text-overflow: ellipsis; |
| 26 white-space: nowrap; | 34 white-space: nowrap; |
| 27 } | 35 } |
| 28 | 36 |
| 29 #supervised-user-list > * { | 37 #supervised-user-list > * { |
| 30 height: 40px; | 38 height: 40px; |
| 31 } | 39 } |
| 32 | 40 |
| 33 #supervised-user-list:focus { | 41 #supervised-user-list:focus { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 63 } | 71 } |
| 64 | 72 |
| 65 .profile-name-disabled { | 73 .profile-name-disabled { |
| 66 color: rgb(153, 153, 153); | 74 color: rgb(153, 153, 153); |
| 67 } | 75 } |
| 68 | 76 |
| 69 .already-on-this-device { | 77 .already-on-this-device { |
| 70 padding-left: 20px; | 78 padding-left: 20px; |
| 71 padding-right: 6px; | 79 padding-right: 6px; |
| 72 } | 80 } |
| OLD | NEW |