diff options
author | dpapad@chromium.org <dpapad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-14 01:08:27 +0000 |
---|---|---|
committer | dpapad@chromium.org <dpapad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-14 01:08:27 +0000 |
commit | 2afff558196f309cc1f69a2b91b9ff2a200322a6 (patch) | |
tree | df792a1727ded86a306406904d51a91b9c36c687 /chrome/browser/resources | |
parent | 7c1e647e347170863f3ddf513d4f7a2b970e420e (diff) | |
download | chromium_src-2afff558196f309cc1f69a2b91b9ff2a200322a6.zip chromium_src-2afff558196f309cc1f69a2b91b9ff2a200322a6.tar.gz chromium_src-2afff558196f309cc1f69a2b91b9ff2a200322a6.tar.bz2 |
[i18n fixit] Fixing bookmark manager search field width.
BUG=Placeholder text is truncated in several languages.
TEST=Placeholder text is truncated in less languages.
Review URL: http://codereview.chromium.org/9197017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117747 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/bookmark_manager/css/bmm.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/chrome/browser/resources/bookmark_manager/css/bmm.css b/chrome/browser/resources/bookmark_manager/css/bmm.css index 57c7a98..890c3e13 100644 --- a/chrome/browser/resources/bookmark_manager/css/bmm.css +++ b/chrome/browser/resources/bookmark_manager/css/bmm.css @@ -1,4 +1,4 @@ -/* Copyright (c) 2011 The Chromium Authors. All rights reserved. +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ @@ -42,7 +42,7 @@ list > * > .label { list > * > .url { display: none; - -webkit-box-flex: 1; + -webkit-box-flex: 1; direction: ltr; /* URLs always read LTR */ } @@ -56,7 +56,7 @@ list > [selected] > .url { * left. And since url is always LTR, that is padding at the end, not the start. */ html[dir=rtl] .url { - -webkit-padding-end: 20px; + -webkit-padding-end: 20px; -webkit-padding-start: 0; } @@ -242,6 +242,7 @@ html[os=mac] .splitter { float: left; margin: 14px 2px; margin-bottom: 0; + width: 171px; } .header { @@ -254,6 +255,12 @@ html[dir=rtl] .header form { float: right; } +input[type='search'] { + -webkit-margin-end: 2px; + -webkit-margin-start: 2px; + width: 100%; +} + #drop-overlay { position: absolute; display: none; |