summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-11-03 01:16:11 -0500
committerDavid Rothstein <drothstein@gmail.com>2014-11-03 01:16:11 -0500
commitf7cf579dfb85ffb21f7870ef1c73aec4147127f9 (patch)
tree6e2c807245271cbd15b5ae0f41bdd957002dbf17 /modules
parent9ebc7af3c50368e899f028320ea752a0885642d5 (diff)
downloadbrdo-f7cf579dfb85ffb21f7870ef1c73aec4147127f9.tar.gz
brdo-f7cf579dfb85ffb21f7870ef1c73aec4147127f9.tar.bz2
Issue #1069152 by droplet, alexandrezia, Mixologic, jhedstrom | ogi: Fixed Throbber in textfield is often misaligned.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.base-rtl.css4
-rw-r--r--modules/system/system.base.css9
2 files changed, 7 insertions, 6 deletions
diff --git a/modules/system/system.base-rtl.css b/modules/system/system.base-rtl.css
index 075cafec2..79d6302d7 100644
--- a/modules/system/system.base-rtl.css
+++ b/modules/system/system.base-rtl.css
@@ -9,10 +9,10 @@
*/
/* Animated throbber */
html.js input.form-autocomplete {
- background-position: 0% 2px;
+ background-position: 0% center;
}
html.js input.throbbing {
- background-position: 0% -18px;
+ background-position: 0% center;
}
/**
diff --git a/modules/system/system.base.css b/modules/system/system.base.css
index 412b18a82..7e9220da0 100644
--- a/modules/system/system.base.css
+++ b/modules/system/system.base.css
@@ -31,12 +31,13 @@
}
/* Animated throbber */
html.js input.form-autocomplete {
- background-image: url(../../misc/throbber.gif);
- background-position: 100% 2px; /* LTR */
+ background-image: url(../../misc/throbber-inactive.png);
+ background-position: 100% center; /* LTR */
background-repeat: no-repeat;
}
html.js input.throbbing {
- background-position: 100% -18px; /* LTR */
+ background-image: url(../../misc/throbber-active.gif);
+ background-position: 100% center; /* LTR */
}
/**
@@ -164,7 +165,7 @@ table.sticky-header {
display: inline-block;
}
.ajax-progress .throbber {
- background: transparent url(../../misc/throbber.gif) no-repeat 0px -18px;
+ background: transparent url(../../misc/throbber-active.gif) no-repeat 0px center;
float: left; /* LTR */
height: 15px;
margin: 2px;