| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
| 6 #manage-profile-overlay { | 6 #manage-profile-overlay { |
| 7 width: 500px; | 7 width: 500px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .profile-icon-grid-item { | 10 .profile-icon-grid-item { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 #manage-profile-name-label { | 42 #manage-profile-name-label { |
| 43 -webkit-margin-end: 20px; | 43 -webkit-margin-end: 20px; |
| 44 } | 44 } |
| 45 | 45 |
| 46 #manage-profile-name { | 46 #manage-profile-name { |
| 47 -webkit-box-flex: 1; | 47 -webkit-box-flex: 1; |
| 48 display: block; | 48 display: block; |
| 49 } | 49 } |
| 50 | 50 |
| 51 #manage-profile-duplicate-name-error { | 51 #manage-profile-name-error { |
| 52 -webkit-transition: max-height 0.2s, padding 0.2s; | 52 -webkit-transition: max-height 0.2s, padding 0.2s; |
| 53 background-color: #eeb939; | 53 background-color: #eeb939; |
| 54 border-radius: 4px; | 54 border-radius: 4px; |
| 55 font-weight: bold; | 55 font-weight: bold; |
| 56 margin-left: auto; | 56 margin-left: auto; |
| 57 margin-right: auto; | 57 margin-right: auto; |
| 58 max-height: 50px; | 58 max-height: 50px; |
| 59 overflow: hidden; | 59 overflow: hidden; |
| 60 padding: 1px 10px; | 60 padding: 1px 10px; |
| 61 text-align: center; | 61 text-align: center; |
| 62 width: 80%; | 62 width: 80%; |
| 63 } | 63 } |
| 64 | 64 |
| 65 #manage-profile-duplicate-name-error.hiding { | 65 #manage-profile-name-error.hiding { |
| 66 max-height: 0; | 66 max-height: 0; |
| 67 padding: 0 10px; | 67 padding: 0 10px; |
| 68 } | 68 } |
| 69 | 69 |
| 70 #manage-profile-icon-grid { | 70 #manage-profile-icon-grid { |
| 71 background-color: rgba(255, 255, 255, 0.75); | 71 background-color: rgba(255, 255, 255, 0.75); |
| 72 border: 1px solid rgba(0, 0, 0, 0.3); | 72 border: 1px solid rgba(0, 0, 0, 0.3); |
| 73 padding: 2px; | 73 padding: 2px; |
| 74 } | 74 } |
| 75 | 75 |
| OLD | NEW |