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 border: 1px solid #c8cdda; | |
14 border-radius: 0; | |
15 padding: 0px; | |
arv (Not doing code reviews)
2011/01/18 20:16:38
s/0px/0/
Evan Stade
2011/01/18 21:56:44
Done.
| |
16 -webkit-box-shadow: 0px 0px 40px -5px #888; | |
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 border-top: 1px solid #eeeeee; | |
47 display: -webkit-box; | |
48 padding: 12px; | |
49 -webkit-box-align: center; | |
50 -webkit-box-orient: horizontal; | |
stuartmorgan
2011/01/14 22:25:32
I think we've been putting these first rather than
Evan Stade
2011/01/18 21:56:44
Done.
| |
51 } | |
OLD | NEW |