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 #manage-profile-overlay { | |
7 width: 500px; | |
8 } | |
9 | |
10 .profile-icon-grid-item { | |
11 border: none !important; | |
12 height: 31px; | |
13 margin: 4px 6px; | |
14 padding: 4px; | |
15 width: 38px; | |
16 } | |
17 | |
18 .profile-icon { | |
19 height: 31px; | |
20 width: 38px; | |
21 } | |
22 | |
23 #manage-profile-content > :first-child { | |
24 margin-bottom: 5px; | |
25 } | |
26 | |
27 #manage-profile-content > :last-child { | |
28 margin-top: 5px; | |
29 } | |
30 | |
31 #manage-profile-content > :not(:first-child):not(:last-child) { | |
32 margin-top: 5px; | |
33 margin-bottom: 5px; | |
34 } | |
35 | |
36 #manage-profile-name-div { | |
37 -webkit-box-align: baseline; | |
38 -webkit-box-orient: horizontal; | |
39 display: -webkit-box; | |
40 } | |
41 | |
42 #manage-profile-name-label { | |
43 -webkit-margin-end: 20px; | |
44 } | |
45 | |
46 #manage-profile-name { | |
47 -webkit-box-flex: 1; | |
48 display: block; | |
49 } | |
50 | |
51 #manage-profile-name:invalid { | |
52 background-color: pink; | |
53 } | |
54 | |
55 #manage-profile-error-bubble { | |
56 -webkit-transition: max-height 200ms, padding 200ms; | |
57 background-color: #eeb939; | |
58 border-radius: 4px; | |
59 font-weight: bold; | |
60 margin-left: auto; | |
61 margin-right: auto; | |
62 max-height: 50px; | |
63 overflow: hidden; | |
64 padding: 1px 10px; | |
65 text-align: center; | |
66 width: 80%; | |
67 } | |
68 | |
69 #manage-profile-error-bubble[hidden] { | |
70 display: block !important; | |
71 max-height: 0; | |
72 padding: 0 10px; | |
73 } | |
74 | |
75 #manage-profile-icon-grid { | |
76 background-color: rgba(255, 255, 255, 0.75); | |
77 border: 1px solid rgba(0, 0, 0, 0.3); | |
78 padding: 2px; | |
79 } | |
80 | |
81 #delete-profile-message { | |
82 background-repeat: no-repeat; | |
83 -webkit-padding-start: 48px; | |
84 } | |
85 | |
86 html[dir='rtl'] #delete-profile-message { | |
87 background-position: right; | |
88 } | |
OLD | NEW |