OLD | NEW |
(Empty) | |
| 1 /* |
| 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 |
| 4 found in the LICENSE file. |
| 5 */ |
| 6 |
| 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 |
| 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. */ |
| 11 |
| 12 #clearBrowserDataOverlay { |
| 13 -webkit-box-shadow: 0px 0px 40px -5px #888; |
| 14 border: 1px solid #c8cdda; |
| 15 border-radius: 0; |
| 16 padding: 0; |
| 17 } |
| 18 |
| 19 #cbdTitle { |
| 20 background: -webkit-linear-gradient(white, #F8F8F8); |
| 21 border-bottom: 1px solid #bbbbbb; |
| 22 display: block; |
| 23 font-size: 105%; |
| 24 font-weight: bold; |
| 25 padding: 12px; |
| 26 } |
| 27 |
| 28 #cbdContentArea { |
| 29 padding: 5px 15px; |
| 30 } |
| 31 |
| 32 #cbdContentArea label { |
| 33 margin: 5px 0; |
| 34 } |
| 35 |
| 36 #cbdThrobber { |
| 37 background-image: url("../../../../app/resources/throbber.png"); |
| 38 display: inline-block; |
| 39 height: 16px; |
| 40 margin: -3px 10px; |
| 41 visibility: hidden; |
| 42 width: 16px; |
| 43 } |
| 44 |
| 45 #cbdActionArea { |
| 46 -webkit-box-align: center; |
| 47 -webkit-box-orient: horizontal; |
| 48 border-top: 1px solid #eeeeee; |
| 49 display: -webkit-box; |
| 50 padding: 12px; |
| 51 } |
OLD | NEW |