| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 #create-new-user-link { | 5 #create-new-user-link { |
| 6 position: absolute; | 6 position: absolute; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #managed-user-import { | 9 #managed-user-import { |
| 10 width: 612px; | 10 width: 612px; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #managed-user-import-text { | 13 #managed-user-import-text { |
| 14 padding-bottom: 10px; | 14 padding-bottom: 10px; |
| 15 padding-left: 17px; | 15 padding-left: 17px; |
| 16 white-space: pre-wrap; | 16 white-space: pre-wrap; |
| 17 word-wrap: break-word; | 17 word-wrap: break-word; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #managed-user-list { | 20 #managed-user-list { |
| 21 height: 240px; | 21 height: 240px; |
| 22 margin-bottom: 10px; |
| 23 } |
| 24 |
| 25 #managed-user-list .profile-name { |
| 26 -webkit-box-flex: 1; |
| 27 overflow: hidden; |
| 28 text-overflow: ellipsis; |
| 29 white-space: nowrap; |
| 30 } |
| 31 |
| 32 #managed-user-list > * { |
| 33 height: 40px; |
| 34 } |
| 35 |
| 36 #managed-user-list:focus { |
| 37 border-color: rgb(77, 144, 254); |
| 22 } | 38 } |
| 23 | 39 |
| 24 #select-avatar-grid { | 40 #select-avatar-grid { |
| 25 background-color: rgba(255, 255, 255, 0.75); | 41 background-color: rgba(255, 255, 255, 0.75); |
| 26 padding: 2px; | 42 padding: 2px; |
| 27 } | 43 } |
| 28 | 44 |
| 29 #managed-user-import-error-bubble { | 45 #managed-user-import-error-bubble { |
| 30 -webkit-transition: max-height 200ms, padding 200ms; | 46 -webkit-transition: max-height 200ms, padding 200ms; |
| 31 background-color: rgb(238, 185, 57); | 47 background-color: rgb(238, 185, 57); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 47 | 63 |
| 48 .profile-img-disabled { | 64 .profile-img-disabled { |
| 49 opacity: 0.4; | 65 opacity: 0.4; |
| 50 } | 66 } |
| 51 | 67 |
| 52 .profile-name-disabled { | 68 .profile-name-disabled { |
| 53 color: rgb(153, 153, 153); | 69 color: rgb(153, 153, 153); |
| 54 } | 70 } |
| 55 | 71 |
| 56 .already-on-this-device { | 72 .already-on-this-device { |
| 57 padding-left: 4px; | 73 padding-left: 20px; |
| 58 padding-right: 4px; | 74 padding-right: 6px; |
| 59 } | 75 } |
| OLD | NEW |