OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 #profiles-manage-overlay { |
| 7 width: 500px; |
| 8 } |
| 9 |
| 10 .profile-icon-list-item { |
| 11 border: none !important; |
| 12 display: inline-block; |
| 13 height: 38px; |
| 14 margin: 4px; |
| 15 padding: 0; |
| 16 width: 38px; |
| 17 } |
| 18 |
| 19 .profile-icon { |
| 20 height: 38px; |
| 21 width: 38px; |
| 22 } |
| 23 |
| 24 #profiles-manage-content > :first-child { |
| 25 margin-bottom: 5px; |
| 26 } |
| 27 |
| 28 #profiles-manage-content > :last-child { |
| 29 margin-top: 5px; |
| 30 } |
| 31 |
| 32 #profiles-manage-content > :not(:first-child):not(:last-child) { |
| 33 margin-top: 5px; |
| 34 margin-bottom: 5px; |
| 35 } |
| 36 |
| 37 #profiles-manage-name-div { |
| 38 -webkit-box-align: baseline; |
| 39 -webkit-box-orient: horizontal; |
| 40 display: -webkit-box; |
| 41 } |
| 42 |
| 43 #profiles-manage-name-label { |
| 44 -webkit-margin-end: 20px; |
| 45 } |
| 46 |
| 47 #profiles-manage-name { |
| 48 -webkit-box-flex: 1; |
| 49 display: block; |
| 50 } |
| 51 |
| 52 #profiles-manage-duplicate-name-error { |
| 53 -webkit-transition: max-height 0.2s, padding 0.2s; |
| 54 background-color: #eeb939; |
| 55 border-radius: 4px; |
| 56 font-weight: bold; |
| 57 margin-left: auto; |
| 58 margin-right: auto; |
| 59 max-height: 50px; |
| 60 overflow: hidden; |
| 61 padding: 1px 10px; |
| 62 text-align: center; |
| 63 width: 80%; |
| 64 } |
| 65 |
| 66 #profiles-manage-duplicate-name-error.hiding { |
| 67 max-height: 0; |
| 68 padding: 0 10px; |
| 69 } |
| 70 |
| 71 #profiles-manage-icon-list { |
| 72 background-color: rgba(255, 255, 255, 0.75); |
| 73 border: 1px solid rgba(0, 0, 0, 0.3); |
| 74 height: 150px; |
| 75 } |
| 76 |
OLD | NEW |