OLD | NEW |
| (Empty) |
1 /* Copyright 2013 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 #reset-profile-settings-banner { | |
6 background-color: #f5f5f5; | |
7 border-color: #c8c8c8; | |
8 border-radius: 3px; | |
9 border-style: solid; | |
10 border-width: 1px; | |
11 margin-bottom: 24px; | |
12 margin-top: 20px; | |
13 position: relative; | |
14 width: 716px; | |
15 } | |
16 | |
17 #reset-profile-settings-banner > .close-button { | |
18 background-image: url('chrome://theme/IDR_CLOSE_DIALOG'); | |
19 background-position: center; | |
20 background-repeat: no-repeat; | |
21 height: 14px; | |
22 opacity: 0.5; | |
23 position: absolute; | |
24 right: 4px; | |
25 top: 4px; | |
26 width: 14px; | |
27 } | |
28 | |
29 html[dir='rtl'] #reset-profile-settings-banner > .close-button { | |
30 left: 4px; | |
31 right: auto; | |
32 } | |
33 | |
34 #reset-profile-settings-banner > .close-button:hover { | |
35 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); | |
36 } | |
37 | |
38 #reset-profile-settings-banner > .close-button:active { | |
39 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); | |
40 } | |
41 | |
42 #reset-profile-settings-banner .content-area { | |
43 -webkit-box-align: center; | |
44 display: -webkit-box; | |
45 padding: 17px; | |
46 } | |
47 | |
48 #reset-profile-settings-banner .content-area .badge { | |
49 background-image: url(yellow_gear.png); | |
50 background-position: center; | |
51 background-repeat: no-repeat; | |
52 height: 55px; | |
53 width: 58px; | |
54 } | |
55 | |
56 #reset-profile-settings-banner .content-area .text { | |
57 -webkit-box-flex: 1.0; | |
58 -webkit-margin-start: 18px; | |
59 } | |
60 | |
61 #reset-profile-settings-banner .content-area .text p { | |
62 -webkit-margin-after: 0; | |
63 -webkit-margin-before: 0; | |
64 } | |
65 | |
66 #reset-profile-settings-banner .content-area .button-area { | |
67 -webkit-margin-start: 54px; | |
68 } | |
69 | |
70 #reset-profile-settings-banner .nowrap { | |
71 white-space: nowrap; | |
72 } | |
73 | |
74 #reset-profile-settings-banner button { | |
75 margin-bottom: 1px; | |
76 margin-right: 0; | |
77 } | |
OLD | NEW |