OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 4 |
5 /* These styles are used bby both reset_profile_settings_banner.html and | 5 /* These styles are used bby both reset_profile_settings_banner.html and |
6 * automatic_settings_reset_banner.html. */ | 6 * automatic_settings_reset_banner.html. */ |
7 | 7 |
8 .settings-banner { | 8 .settings-banner { |
9 background-color: #f5f5f5; | 9 background-color: #f5f5f5; |
10 border-color: #c8c8c8; | 10 border-color: #c8c8c8; |
11 border-radius: 3px; | 11 border-radius: 3px; |
12 border-style: solid; | 12 border-style: solid; |
13 border-width: 1px; | 13 border-width: 1px; |
14 margin-bottom: 24px; | 14 margin-bottom: 24px; |
15 margin-top: 20px; | 15 margin-top: 20px; |
| 16 max-width: 716px; |
16 position: relative; | 17 position: relative; |
17 width: 716px; | |
18 } | 18 } |
19 | 19 |
20 .settings-banner > .close-button { | 20 .settings-banner > .close-button { |
21 background-image: url('chrome://theme/IDR_CLOSE_DIALOG'); | 21 background-image: url('chrome://theme/IDR_CLOSE_DIALOG'); |
22 background-position: center; | 22 background-position: center; |
23 background-repeat: no-repeat; | 23 background-repeat: no-repeat; |
24 height: 14px; | 24 height: 14px; |
25 opacity: 0.5; | 25 opacity: 0.5; |
26 position: absolute; | 26 position: absolute; |
27 right: 4px; | 27 right: 4px; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } | 71 } |
72 | 72 |
73 .settings-banner .nowrap { | 73 .settings-banner .nowrap { |
74 white-space: nowrap; | 74 white-space: nowrap; |
75 } | 75 } |
76 | 76 |
77 .settings-banner button { | 77 .settings-banner button { |
78 margin-bottom: 1px; | 78 margin-bottom: 1px; |
79 margin-right: 0; | 79 margin-right: 0; |
80 } | 80 } |
| 81 |
| 82 #secondary-user-banner .content-area .badge { |
| 83 background-color: rgb(210, 210, 212); |
| 84 background-image: url(chrome://theme/IDR_SECONDARY_USER_SETTINGS); |
| 85 } |
OLD | NEW |