| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #supervised-user-list:focus { | 45 #supervised-user-list:focus { |
| 46 border-color: rgb(77, 144, 254); | 46 border-color: rgb(77, 144, 254); |
| 47 } | 47 } |
| 48 | 48 |
| 49 #select-avatar-grid { | 49 #select-avatar-grid { |
| 50 background-color: rgba(255, 255, 255, 0.75); | 50 background-color: rgba(255, 255, 255, 0.75); |
| 51 padding: 2px; | 51 padding: 2px; |
| 52 } | 52 } |
| 53 | 53 |
| 54 #supervised-user-import-error-bubble { | 54 #supervised-user-import-error-bubble { |
| 55 -webkit-transition: max-height 200ms, padding 200ms; | |
| 56 background-color: rgb(238, 185, 57); | 55 background-color: rgb(238, 185, 57); |
| 57 border-radius: 4px; | 56 border-radius: 4px; |
| 58 font-weight: bold; | 57 font-weight: bold; |
| 59 margin-left: auto; | 58 margin-left: auto; |
| 60 margin-right: auto; | 59 margin-right: auto; |
| 61 margin-top: 10px; | 60 margin-top: 10px; |
| 62 max-height: 50px; | 61 max-height: 50px; |
| 63 overflow: hidden; | 62 overflow: hidden; |
| 64 padding: 1px 10px; | 63 padding: 1px 10px; |
| 65 text-align: center; | 64 text-align: center; |
| 65 transition: max-height 200ms, padding 200ms; |
| 66 width: 80%; | 66 width: 80%; |
| 67 } | 67 } |
| 68 | 68 |
| 69 #supervised-user-import-error-bubble[hidden] { | 69 #supervised-user-import-error-bubble[hidden] { |
| 70 max-height: 0; | 70 max-height: 0; |
| 71 } | 71 } |
| 72 | 72 |
| 73 .profile-img-disabled { | 73 .profile-img-disabled { |
| 74 opacity: 0.4; | 74 opacity: 0.4; |
| 75 } | 75 } |
| 76 | 76 |
| 77 .profile-name-disabled { | 77 .profile-name-disabled { |
| 78 color: rgb(153, 153, 153); | 78 color: rgb(153, 153, 153); |
| 79 } | 79 } |
| 80 | 80 |
| 81 .already-on-this-device { | 81 .already-on-this-device { |
| 82 padding-left: 20px; | 82 padding-left: 20px; |
| 83 padding-right: 6px; | 83 padding-right: 6px; |
| 84 } | 84 } |
| OLD | NEW |