diff options
author | idana@chromium.org <idana@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 23:03:21 +0000 |
---|---|---|
committer | idana@chromium.org <idana@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 23:03:21 +0000 |
commit | 386afa320189f08ab18b453863d6cc6a758b06d1 (patch) | |
tree | 7e5ce37fdbf63daf478f2b178b2c8d2e47e150fe /chrome/browser/resources/new_new_tab.css | |
parent | d9810a805d4e4626bf2ec9dc805e5643a801d3d9 (diff) | |
download | chromium_src-386afa320189f08ab18b453863d6cc6a758b06d1.zip chromium_src-386afa320189f08ab18b453863d6cc6a758b06d1.tar.gz chromium_src-386afa320189f08ab18b453863d6cc6a758b06d1.tar.bz2 |
Made the Sync UI work in the New New tab page.
There are no significant logic changes except the addition of a link which points to the web ui.
BUG=none
Review URL: http://codereview.chromium.org/172007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23591 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/new_new_tab.css')
-rw-r--r-- | chrome/browser/resources/new_new_tab.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/chrome/browser/resources/new_new_tab.css b/chrome/browser/resources/new_new_tab.css index 1f52452..1c4fefe 100644 --- a/chrome/browser/resources/new_new_tab.css +++ b/chrome/browser/resources/new_new_tab.css @@ -460,7 +460,7 @@ html[dir='rtl'] .item { background-color: hsla(213, 60%, 92%, .4); border: 1px solid hsl(213, 60%, 92%); -webkit-border-radius: 5px; - padding: 5px 0px;; + padding: 5px 0px; white-space: nowrap; overflow-x: hidden; } @@ -490,6 +490,28 @@ html[dir='rtl'] .item { -webkit-padding-start: 2px; } +#sync-status { + -webkit-transition: height .15s, opacity .15s; + background-color: hsla(213, 60%, 92%, .4); + border: 1px solid hsl(213, 60%, 92%); + -webkit-border-radius: 6px; + padding: 5px 0; + margin: 10px 0; + white-space: nowrap; + opacity: 0; + overflow-x: hidden; +} + +#sync-status > * { + display: inline-block; + max-width: none; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + font-size: 100%; + margin: 0 10px; +} + #view-toolbar { -webkit-user-select: none; text-align: right; |