summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-16 00:05:52 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-16 00:05:52 +0000
commit17bc2fda0ad39f2d3599de486ee065986a33c00c (patch)
tree99349656ead85591e448b7be62c932fb4682c53a /chrome/browser/resources
parent66f4409a9cd01bf8f622e62fd4403bd9c541967f (diff)
downloadchromium_src-17bc2fda0ad39f2d3599de486ee065986a33c00c.zip
chromium_src-17bc2fda0ad39f2d3599de486ee065986a33c00c.tar.gz
chromium_src-17bc2fda0ad39f2d3599de486ee065986a33c00c.tar.bz2
Miscellaneous API sprucing.
- Camel-case event names. - Rename chromium.self in content scripts to chromium.extension. - Move onConnect in extension process to chromium.self.onConnect. - Move definition of chromium.self to extension_process_bindings.js, so that it is near all the other extension process API. - Make toolstrips not wrap by default - Make toolstrips 21px high instead of 19, which was required to avoid an ugly white horizontal bar on my machine. This may be font dependent :(, which is another reason I need to finish making us paint the toolstrips background instead of using this CSS hack. Review URL: http://codereview.chromium.org/67162 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13816 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rwxr-xr-xchrome/browser/resources/extensions_toolstrip.css5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/resources/extensions_toolstrip.css b/chrome/browser/resources/extensions_toolstrip.css
index a8a332d..921f97f 100755
--- a/chrome/browser/resources/extensions_toolstrip.css
+++ b/chrome/browser/resources/extensions_toolstrip.css
@@ -10,6 +10,7 @@ body {
#main {
background: -webkit-gradient(linear, left top, left bottom, from(rgb(222, 234, 248)), to(rgb(237, 244, 252)));
padding-top: 3px;
- height:19px;
- overflow:hidden;
+ height: 21px;
+ overflow: hidden;
+ white-space: nowrap;
}