diff options
author | sergiu@chromium.org <sergiu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-17 10:39:12 +0000 |
---|---|---|
committer | sergiu@chromium.org <sergiu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-17 10:39:12 +0000 |
commit | ece95c37ac3a45dd69b9fc881159b02018fd1bcf (patch) | |
tree | b45896fc19997f890c4b2af6676fc3ecb832eedc /ui/webui | |
parent | a335befc41b7a37f36e47ac02a6bec8af4da6da1 (diff) | |
download | chromium_src-ece95c37ac3a45dd69b9fc881159b02018fd1bcf.zip chromium_src-ece95c37ac3a45dd69b9fc881159b02018fd1bcf.tar.gz chromium_src-ece95c37ac3a45dd69b9fc881159b02018fd1bcf.tar.bz2 |
Do not repeat the background on throbber image.
The throbber image gets repeted with a bad visual effect sometimes. There's no
point in it being repeated in that container since the size should be the
size of the image.
BUG=250733
R=pam@chromium.org
Review URL: https://chromiumcodereview.appspot.com/16819006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206699 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/webui')
-rw-r--r-- | ui/webui/resources/css/throbber.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/webui/resources/css/throbber.css b/ui/webui/resources/css/throbber.css index a8a8bb2..5de9141 100644 --- a/ui/webui/resources/css/throbber.css +++ b/ui/webui/resources/css/throbber.css @@ -3,7 +3,7 @@ * found in the LICENSE file. */ .throbber { - background: url('chrome://resources/images/throbber.svg'); + background: url('chrome://resources/images/throbber.svg') no-repeat; display: inline-block; height: 16px; width: 16px; |