| 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 height: 400px; | |
| 11 width: 612px; | 10 width: 612px; |
| 12 } | 11 } |
| 13 | 12 |
| 14 #managed-user-import-text { | 13 #managed-user-import-text { |
| 15 padding-bottom: 10px; | 14 padding-bottom: 10px; |
| 16 padding-left: 17px; | 15 padding-left: 17px; |
| 17 white-space: pre-wrap; | 16 white-space: pre-wrap; |
| 18 word-wrap: break-word; | 17 word-wrap: break-word; |
| 19 } | 18 } |
| 20 | 19 |
| 20 #managed-user-list { |
| 21 height: 240px; |
| 22 } |
| 23 |
| 24 #select-avatar-grid { |
| 25 background-color: rgba(255, 255, 255, 0.75); |
| 26 padding: 2px; |
| 27 } |
| 28 |
| 21 #managed-user-import-error-bubble { | 29 #managed-user-import-error-bubble { |
| 22 -webkit-transition: max-height 200ms, padding 200ms; | 30 -webkit-transition: max-height 200ms, padding 200ms; |
| 23 background-color: rgb(238, 185, 57); | 31 background-color: rgb(238, 185, 57); |
| 24 border-radius: 4px; | 32 border-radius: 4px; |
| 25 font-weight: bold; | 33 font-weight: bold; |
| 26 margin-left: auto; | 34 margin-left: auto; |
| 27 margin-right: auto; | 35 margin-right: auto; |
| 28 margin-top: 10px; | 36 margin-top: 10px; |
| 29 max-height: 50px; | 37 max-height: 50px; |
| 30 overflow: hidden; | 38 overflow: hidden; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 42 } | 50 } |
| 43 | 51 |
| 44 .profile-name-disabled { | 52 .profile-name-disabled { |
| 45 color: rgb(153, 153, 153); | 53 color: rgb(153, 153, 153); |
| 46 } | 54 } |
| 47 | 55 |
| 48 .already-on-this-device { | 56 .already-on-this-device { |
| 49 padding-left: 4px; | 57 padding-left: 4px; |
| 50 padding-right: 4px; | 58 padding-right: 4px; |
| 51 } | 59 } |
| OLD | NEW |