diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-11 18:34:14 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-11 18:34:14 +0000 |
commit | ea7452ec150026c4cef99a661a5afc32bec1749c (patch) | |
tree | 59d2a98fff7a6b21d43feddc5a52a655450c8236 /chrome/browser/resources | |
parent | d55194ca076df03e149b904b12f83baadad85a8e (diff) | |
download | chromium_src-ea7452ec150026c4cef99a661a5afc32bec1749c.zip chromium_src-ea7452ec150026c4cef99a661a5afc32bec1749c.tar.gz chromium_src-ea7452ec150026c4cef99a661a5afc32bec1749c.tar.bz2 |
Bookmark manager: Update the top section to have same positions and spacing as downloads and history.
BUG=37371,4890
TEST=Open three tabs, History, Downloads and Bookmarks. Ctrl+tab between them and notice how the section icon, input and button all stay in the same position.
Review URL: http://codereview.chromium.org/837003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41293 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/bookmark_manager/css/bmm.css | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/chrome/browser/resources/bookmark_manager/css/bmm.css b/chrome/browser/resources/bookmark_manager/css/bmm.css index 3264db7..d529261 100644 --- a/chrome/browser/resources/bookmark_manager/css/bmm.css +++ b/chrome/browser/resources/bookmark_manager/css/bmm.css @@ -166,7 +166,7 @@ html[os=mac] .tree-row[selected] > .tree-label { .main { position: absolute; - top: 75px; + top: 85px; left: 0; right: 0; bottom: 0; @@ -174,7 +174,7 @@ html[os=mac] .tree-row[selected] > .tree-label { #tree-container { position: absolute; - left: 0; + left: 5px; width: 200px; top: 0; bottom: 0; @@ -191,7 +191,7 @@ html[os=mac] .tree-row[selected] > .tree-label { #list { position: absolute; - left: 200px; + left: 205px; right: 0; top: 0; bottom: 0; @@ -202,13 +202,12 @@ html[os=mac] .tree-row[selected] > .tree-label { .logo { -webkit-appearance: none; border: 0; - background: transparent; background: 50% 50% no-repeat url("../images/bookmarks_section.png"); width: 67px; height: 67px; cursor: pointer; - vertical-align: bottom; - margin: 5px; + margin: 10px; + float: left; } html[dir=rtl] #tree-container { @@ -222,8 +221,19 @@ html[dir=rtl] #list { } .header > div { - display: inline-block; - margin: 5px; + float: left; + margin: 32px 2px; + margin-bottom: 0; +} + +.header form { + margin: 0; +} + +html[dir=rtl] .logo, +html[dir=rtl] .header > div, +html[dir=rtl] .header form { + float: right; } #drop-overlay { @@ -256,11 +266,11 @@ html[dir=rtl] #list { font: inherit; padding: 0; background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; - padding-right: 9px; + padding-right: 11px; } html[dir=rtl] .toolbar button { background-position: 0% 50%; padding-right: 0; - padding-left: 9px; + padding-left: 11px; } |