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: 0px; | |
James Hawkins
2011/07/19 20:22:09
s/px//
0px -> 0 here and elsewhere.
| |
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 display: -webkit-box; | |
39 -webkit-box-orient: horizontal; | |
James Hawkins
2011/07/19 20:22:09
-webkit properties should be at the top.
| |
40 -webkit-box-align: baseline; | |
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 background-color: #eeb939; | |
54 border-radius: 4px; | |
55 font-weight: bold; | |
56 margin-left: auto; | |
57 margin-right: auto; | |
58 max-height: 50px; | |
59 overflow: hidden; | |
60 padding: 1px 10px; | |
61 text-align: center; | |
62 -webkit-transition: max-height 0.2s, padding 0.2s; | |
63 width: 80%; | |
64 } | |
65 | |
66 #profiles-manage-duplicate-name-error.hiding { | |
67 max-height: 0px; | |
68 padding: 0px 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 |