diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 22:10:08 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 22:10:08 +0000 |
commit | 823065937f5432a7ebbb8fbc15de730e6b5e0735 (patch) | |
tree | 446cd858342c6277993b348ee3cf2d9a332c5931 | |
parent | b51f7bf9a501c5d2e62e3d33de109518b18fd0d2 (diff) | |
download | chromium_src-823065937f5432a7ebbb8fbc15de730e6b5e0735.zip chromium_src-823065937f5432a7ebbb8fbc15de730e6b5e0735.tar.gz chromium_src-823065937f5432a7ebbb8fbc15de730e6b5e0735.tar.bz2 |
Fix 2 missing pixels on bottom of icon on about:plugins, chrome://extensions, and about:labs
BUG=none
TEST=look hard
Review URL: http://codereview.chromium.org/3270009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59008 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/extensions_ui.html | 10 | ||||
-rw-r--r-- | chrome/browser/resources/labs.html | 8 | ||||
-rw-r--r-- | chrome/browser/resources/plugins.html | 8 |
3 files changed, 17 insertions, 9 deletions
diff --git a/chrome/browser/resources/extensions_ui.html b/chrome/browser/resources/extensions_ui.html index a5671a424..fe29ead 100644 --- a/chrome/browser/resources/extensions_ui.html +++ b/chrome/browser/resources/extensions_ui.html @@ -14,13 +14,16 @@ a { font-size: 103%; } -#header { +div#header { margin-bottom: 1.05em; + /* 67px is the height of the header's background image. */ + min-height: 67px; overflow: hidden; - padding-bottom: 1.5em; + padding-bottom: 20px; padding-left: 0; - padding-top: 1.5em; + padding-top: 20px; position: relative; + -webkit-box-sizing: border-box; } html[dir=rtl] #header { @@ -35,6 +38,7 @@ html[dir=rtl] #header { padding-left: 75px; padding-top: 40px; } + html[dir=rtl] #header h1 { background: url('../../app/theme/extensions_section.png') right no-repeat; padding-right: 95px; diff --git a/chrome/browser/resources/labs.html b/chrome/browser/resources/labs.html index 3e638ff..4d95e31 100644 --- a/chrome/browser/resources/labs.html +++ b/chrome/browser/resources/labs.html @@ -4,7 +4,6 @@ <meta charset="utf-8"> <title i18n-content="labsTitle"></title> <style> - body { margin: 10px; min-width: 47em; @@ -17,11 +16,14 @@ a { div#header { margin-bottom: 1.05em; + /* 67px is the height of the header's background image. */ + min-height: 67px; overflow: hidden; - padding-bottom: 1.5em; + padding-bottom: 20px; padding-left: 0; - padding-top: 1.5em; + padding-top: 20px; position: relative; + -webkit-box-sizing: border-box; } html[dir=rtl] #header { diff --git a/chrome/browser/resources/plugins.html b/chrome/browser/resources/plugins.html index fa3d893..58c34de 100644 --- a/chrome/browser/resources/plugins.html +++ b/chrome/browser/resources/plugins.html @@ -4,7 +4,6 @@ <meta charset="utf-8"> <title i18n-content="pluginsTitle"></title> <style> - body { margin: 10px; min-width: 47em; @@ -17,11 +16,14 @@ a { div#header { margin-bottom: 1.05em; + /* 67px is the height of the header's background image. */ + min-height: 67px; overflow: hidden; - padding-bottom: 1.5em; + padding-bottom: 20px; padding-left: 0; - padding-top: 1.5em; + padding-top: 20px; position: relative; + -webkit-box-sizing: border-box; } html[dir=rtl] #header { |