| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* TODO(estade): these rules override some more general style rules. We | 7 /* TODO(estade): these rules override some more general style rules. We |
| 8 * should unify these rules instead of overriding them, but first we need | 8 * should unify these rules instead of overriding them, but first we need |
| 9 * to update existing overlays. Since a lot of the overlays are going away, | 9 * to update existing overlays. Since a lot of the overlays are going away, |
| 10 * I'm making these rules specific to this overlay for now. */ | 10 * I'm making these rules specific to this overlay for now. */ |
| 11 | 11 |
| 12 #clearBrowserDataOverlay { | 12 #clearBrowserDataOverlay { |
| 13 -webkit-box-shadow: 0px 0px 40px -5px #888; | 13 -webkit-box-shadow: 0px 0px 40px -5px #888; |
| 14 border: 1px solid #c8cdda; | 14 border: 1px solid rgb(188, 193, 208); |
| 15 border-radius: 0; | 15 border-radius: 2px; |
| 16 min-width: 500px; |
| 16 padding: 0; | 17 padding: 0; |
| 17 } | 18 } |
| 18 | 19 |
| 19 #cbdTitle { | 20 #cbdTitle { |
| 20 background: -webkit-linear-gradient(white, #F8F8F8); | 21 background: -webkit-linear-gradient(white, #F8F8F8); |
| 21 border-bottom: 1px solid #bbbbbb; | 22 border-bottom: 1px solid rgba(188, 193, 208, .5); |
| 22 display: block; | 23 display: block; |
| 23 font-size: 105%; | 24 font-size: 105%; |
| 24 font-weight: bold; | 25 font-weight: bold; |
| 25 padding: 12px; | 26 padding: 10px 15px 8px 15px; |
| 26 } | 27 } |
| 27 | 28 |
| 28 #cbdContentArea { | 29 #cbdContentArea { |
| 29 padding: 5px 15px; | 30 padding: 10px 15px 5px 15px; |
| 30 } | 31 } |
| 31 | 32 |
| 32 #cbdContentArea label { | 33 #cbdContentArea label { |
| 33 margin: 5px 0; | 34 margin: 5px 0; |
| 34 } | 35 } |
| 35 | 36 |
| 36 #cbdThrobber { | 37 #cbdThrobber { |
| 37 background-image: url("../../../../app/resources/throbber.png"); | 38 background-image: url("../../../../app/resources/throbber.png"); |
| 38 display: inline-block; | 39 display: inline-block; |
| 39 height: 16px; | 40 height: 16px; |
| 40 margin: -3px 10px; | 41 margin: -3px 10px; |
| 41 visibility: hidden; | 42 visibility: hidden; |
| 42 width: 16px; | 43 width: 16px; |
| 43 } | 44 } |
| 44 | 45 |
| 45 #cbdActionArea { | 46 #cbdActionArea { |
| 46 -webkit-box-align: center; | 47 -webkit-box-align: center; |
| 47 -webkit-box-orient: horizontal; | 48 -webkit-box-orient: horizontal; |
| 48 border-top: 1px solid #eeeeee; | 49 border-top: 1px solid rgba(188, 193, 208, .5); |
| 49 display: -webkit-box; | 50 display: -webkit-box; |
| 50 padding: 12px; | 51 padding: 12px; |
| 51 } | 52 } |
| OLD | NEW |