Chromium Code Reviews| 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 fef6d6f3d0ab466a7ee2a300c7edb7648ec94852..421dd4c18c9b2c4e777c5b3201846d234a6bb053 100644 |
| --- a/chrome/browser/resources/options/options_page.css |
| +++ b/chrome/browser/resources/options/options_page.css |
| @@ -84,20 +84,32 @@ html[hide-menu=true] .close-subpage { |
| display: none |
| } |
| +.content-area { |
| + padding: 10px 15px 5px 15px; |
| +} |
| + |
| .action-area { |
| -webkit-box-align: center; |
| -webkit-box-orient: horizontal; |
| - bottom: 0; |
| + -webkit-box-pack: end; |
| + border-top: 1px solid rgba(188, 193, 208, .5); |
| display: -webkit-box; |
| padding: 12px; |
| - position: absolute; |
| - right: 0; |
| } |
| html[dir='rtl'] .action-area { |
| left: 0; |
| } |
| +.action-area-left { |
| + -webkit-box-flex: 1; |
| + display: -webkit-box; |
|
stuartmorgan
2011/01/24 17:04:49
Why do we need this?
James Hawkins
2011/01/24 18:42:27
Turns out this class is not needed at all.
|
| +} |
| + |
| +.action-area-right { |
| + display: -webkit-box; |
|
stuartmorgan
2011/01/24 17:04:49
And this?
James Hawkins
2011/01/24 18:42:27
Per off-line, the layout is incorrect w/out this.
|
| +} |
| + |
| .button-strip { |
| -webkit-box-orient: horizontal; |
| display: -webkit-box; |
| @@ -113,12 +125,12 @@ html[toolkit=views] .button-strip { |
| } |
| .overlay .page { |
| - -webkit-box-shadow: 3px 3px 3px #666; |
| + -webkit-box-shadow: 0px 0px 40px -5px #888; |
| background: white; |
| - border: 1px solid #666; |
| - border-radius: 5px; |
| + border: 1px solid rgb(188, 193, 208); |
| + border-radius: 2px; |
| min-width: 400px; |
| - padding: 0 15px 50px 15px; |
| + padding: 0; |
| position: relative; |
| } |