diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-23 20:23:29 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-23 20:23:29 +0000 |
commit | e4cc398588dc6a109ce7322dfa50a2f92e78a1e2 (patch) | |
tree | d46616ec8f3520d87fd1ea5b417981eb83a15038 /chrome/browser/resources/print_preview.css | |
parent | dc55a806cf9d3c410b9cfb9257d6cff6a43f399b (diff) | |
download | chromium_src-e4cc398588dc6a109ce7322dfa50a2f92e78a1e2.zip chromium_src-e4cc398588dc6a109ce7322dfa50a2f92e78a1e2.tar.gz chromium_src-e4cc398588dc6a109ce7322dfa50a2f92e78a1e2.tar.bz2 |
Print preview: Add general options, but they don't do anything yet.
BUG=57902
TEST=none
Review URL: http://codereview.chromium.org/5205007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/print_preview.css')
-rw-r--r-- | chrome/browser/resources/print_preview.css | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/chrome/browser/resources/print_preview.css b/chrome/browser/resources/print_preview.css index 0550f9c..514210a 100644 --- a/chrome/browser/resources/print_preview.css +++ b/chrome/browser/resources/print_preview.css @@ -23,11 +23,13 @@ body { #navbar-container { background-color: #f8fafd; - width: 300px; + width: 295px; + height: 100%; + overflow: auto; } #destination-container { - background-color: #ffffff; + background-color: #fff; padding: 10px; } @@ -36,24 +38,34 @@ body { margin: 0; } -#options-container { - padding: 10px; -} - #separator { background: -webkit-gradient(linear, left top, right top, from(#a4a4a4), - to(#cccccc)); + to(#ccc)); height: 100%; - width: 10px; + width: 6px; } #mainview { -webkit-box-flex: 1; -webkit-padding-start: 10px; - background-color: #cccccc; + background-color: #ccc; +} + +section { + -webkit-box-orient: horizontal; + display: -webkit-box; + margin-top: 15px; +} + +section > h3 { + -webkit-padding-start: 10px; + font-size: 100%; + font-weight: normal; + margin: 0; + width: 50px; } .hidden { |