blob: 853b256874c1701de805e283b807f78fbe81e5eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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. */
#homepage-url-field {
bottom: 1px;
display: block;
margin-left: 10px;
position: relative;
}
/* -webkit-margin-start doesn't work as you'd hope on .weakrtl elements. */
html[dir='rtl'] #homepage-url-field {
margin-left: 0;
margin-right: 10px;
}
|