Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: chrome/browser/resources/options/clear_browser_data_overlay.css

Issue 6372010: DOMUI: Refactor the new overlay style and apply it to all overlays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix 3. Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 { 7 #clearBrowserDataOverlay {
13 -webkit-box-shadow: 0px 0px 40px -5px #888;
14 border: 1px solid rgb(188, 193, 208);
15 border-radius: 2px;
16 min-width: 500px; 8 min-width: 500px;
17 padding: 0;
18 } 9 }
19 10
20 #cbdTitle { 11 #clearBrowserDataOverlay > .content-area label {
21 background: -webkit-linear-gradient(white, #F8F8F8);
22 border-bottom: 1px solid rgba(188, 193, 208, .5);
23 display: block;
24 font-size: 105%;
25 font-weight: bold;
26 padding: 10px 15px 8px 15px;
27 }
28
29 #cbdContentArea {
30 padding: 10px 15px 5px 15px;
31 }
32
33 #cbdContentArea label {
34 margin: 5px 0; 12 margin: 5px 0;
35 } 13 }
36 14
37 #cbdThrobber { 15 #cbdThrobber {
38 background-image: url("../../../../app/resources/throbber.png"); 16 background-image: url("../../../../app/resources/throbber.png");
39 display: inline-block; 17 display: inline-block;
40 height: 16px; 18 height: 16px;
41 margin: -3px 10px; 19 margin: -3px 10px;
42 visibility: hidden; 20 visibility: hidden;
43 width: 16px; 21 width: 16px;
44 } 22 }
45
46 #cbdActionArea {
47 -webkit-box-align: center;
48 -webkit-box-orient: horizontal;
49 border-top: 1px solid rgba(188, 193, 208, .5);
50 display: -webkit-box;
51 padding: 12px;
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698