From 2afff558196f309cc1f69a2b91b9ff2a200322a6 Mon Sep 17 00:00:00 2001 From: "dpapad@chromium.org" Date: Sat, 14 Jan 2012 01:08:27 +0000 Subject: [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 --- chrome/browser/resources/bookmark_manager/css/bmm.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'chrome/browser/resources') 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; -- cgit v1.1