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

Unified Diff: chrome/browser/resources/options/options_page.css

Issue 6313011: DOMUI: Polish up the 'Import Data' overlay. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Narrow a CSS selector. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/options/import_data_overlay.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/options_page.css
diff --git a/chrome/browser/resources/options/options_page.css b/chrome/browser/resources/options/options_page.css
index 15ef6850c0a3b65d27eef6898132005500e67d1d..301693e463dd9167061827d7ec44433af39927bb 100644
--- a/chrome/browser/resources/options/options_page.css
+++ b/chrome/browser/resources/options/options_page.css
@@ -29,17 +29,17 @@ body {
}
.overlay {
- position: fixed;
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ background: rgba(233, 238, 242, .5);
+ bottom: 0;
+ display: -webkit-box;
left: 0;
+ padding: 20px;
+ position: fixed;
right: 0;
- background: rgba(233, 238, 242, .5);
top: 0;
- bottom: 0;
z-index: 10;
- padding: 20px;
- display: -webkit-box;
- -webkit-box-align: center;
- -webkit-box-pack: center;
}
.raw-button,
@@ -112,13 +112,13 @@ html[toolkit=views] .button-strip {
display: block;
}
-.overlay > div {
+.overlay .page {
-webkit-box-shadow: 3px 3px 3px #666;
background: white;
- border-radius: 5px;
- padding: 15px;
border: 1px solid #666;
- padding-bottom: 50px;
+ border-radius: 5px;
+ min-width: 400px;
+ padding: 0 15px 50px 15px;
position: relative;
}
@@ -275,15 +275,23 @@ html[hide-menu=true] #mainview {
padding-top: 13px;
}
-.page list {
- min-height: 200px;
-}
-
.subpage-sheet .page h1 {
padding-top: 4px;
margin-bottom: 10px;
}
+.overlay .page h1 {
+ background: -webkit-linear-gradient(white, #F8F8F8);
+ border-bottom: 1px solid rgba(188, 193, 208, .5);
+ font-size: 105%;
+ font-weight: bold;
+ padding: 10px 15px 8px 15px;
+}
+
+.page list {
+ min-height: 200px;
+}
+
section {
-webkit-box-orient: horizontal;
border-bottom: 1px solid #eeeeee;
« no previous file with comments | « chrome/browser/resources/options/import_data_overlay.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698