OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 */ | |
5 | 4 |
6 #manage-profile-overlay { | 5 #manage-profile-overlay { |
7 width: 500px; | 6 width: 500px; |
8 } | 7 } |
9 | 8 |
10 .profile-icon-grid-item { | 9 .profile-icon-grid-item { |
11 border: none !important; | 10 border: none !important; |
12 height: 31px; | 11 height: 31px; |
13 margin: 4px 6px; | 12 margin: 4px 6px; |
14 padding: 4px; | 13 padding: 4px; |
15 width: 38px; | 14 width: 38px; |
16 } | 15 } |
17 | 16 |
18 .profile-icon { | 17 .profile-icon { |
19 height: 31px; | 18 height: 31px; |
20 width: 38px; | 19 width: 38px; |
21 } | 20 } |
22 | 21 |
23 #manage-profile-content > :first-child { | 22 #manage-profile-content > :first-child { |
24 margin-bottom: 5px; | 23 margin-bottom: 5px; |
25 } | 24 } |
26 | 25 |
27 #manage-profile-content > :last-child { | 26 #manage-profile-content > :last-child { |
28 margin-top: 5px; | 27 margin-top: 5px; |
29 } | 28 } |
30 | 29 |
31 #manage-profile-content > :not(:first-child):not(:last-child) { | 30 #manage-profile-content > :not(:first-child):not(:last-child) { |
| 31 margin-bottom: 5px; |
32 margin-top: 5px; | 32 margin-top: 5px; |
33 margin-bottom: 5px; | |
34 } | 33 } |
35 | 34 |
36 #manage-profile-name-div { | 35 #manage-profile-name-div { |
37 -webkit-box-align: baseline; | 36 -webkit-box-align: baseline; |
38 -webkit-box-orient: horizontal; | 37 -webkit-box-orient: horizontal; |
39 display: -webkit-box; | 38 display: -webkit-box; |
40 } | 39 } |
41 | 40 |
42 #manage-profile-name-label { | 41 #manage-profile-name-label { |
43 -webkit-margin-end: 20px; | 42 -webkit-margin-end: 20px; |
(...skipping 28 matching lines...) Expand all Loading... |
72 padding: 0 10px; | 71 padding: 0 10px; |
73 } | 72 } |
74 | 73 |
75 #manage-profile-icon-grid { | 74 #manage-profile-icon-grid { |
76 background-color: rgba(255, 255, 255, 0.75); | 75 background-color: rgba(255, 255, 255, 0.75); |
77 border: 1px solid rgba(0, 0, 0, 0.3); | 76 border: 1px solid rgba(0, 0, 0, 0.3); |
78 padding: 2px; | 77 padding: 2px; |
79 } | 78 } |
80 | 79 |
81 #delete-profile-message { | 80 #delete-profile-message { |
| 81 -webkit-padding-start: 48px; |
82 background-repeat: no-repeat; | 82 background-repeat: no-repeat; |
83 -webkit-padding-start: 48px; | |
84 } | 83 } |
85 | 84 |
86 html[dir='rtl'] #delete-profile-message { | 85 html[dir='rtl'] #delete-profile-message { |
87 background-position: right; | 86 background-position: right; |
88 } | 87 } |
OLD | NEW |