Navigation Menu

Skip to content

Commit

Permalink
Issue #1069152 by droplet, alexandrezia, Mixologic, jhedstrom | ogi: …
Browse files Browse the repository at this point in the history
…Fixed Throbber in textfield is often misaligned.
  • Loading branch information
DavidRothstein committed Nov 3, 2014
1 parent 9ebc7af commit f7cf579
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.txt
@@ -1,6 +1,8 @@

Drupal 7.33, xxxx-xx-xx (development version)
-----------------------
- Fixed a bug which caused the Ajax progress throbber to appear misaligned in
many situatons (minor styling change).
- Prevented the Bartik theme from lower-casing the "Permalink" link on
comments, for improved multilingual support (minor UI change).
- Added a "preferred_menu_links" tag to the database query that is used by
Expand Down
Binary file added misc/throbber-active.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added misc/throbber-inactive.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions modules/system/system.base-rtl.css
Expand Up @@ -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;
}

/**
Expand Down
9 changes: 5 additions & 4 deletions modules/system/system.base.css
Expand Up @@ -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 */
}

/**
Expand Down Expand Up @@ -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;
Expand Down
8 changes: 0 additions & 8 deletions themes/bartik/css/style.css
Expand Up @@ -1325,14 +1325,6 @@ input.form-button-disabled:active,
color: #717171;
}

/* Animated throbber */
html.js input.form-autocomplete {
background-position: 100% 4px; /* LTR */
}
html.js input.throbbing {
background-position: 100% -16px; /* LTR */
}

/* Comment form */
.comment-form label {
float: left; /* LTR */
Expand Down
7 changes: 1 addition & 6 deletions themes/seven/style.css
Expand Up @@ -709,12 +709,7 @@ select.form-select:focus {
color: #000;
border-color: #ace;
}
html.js input.form-autocomplete {
background-position: 100% 4px;
}
html.js input.throbbing {
background-position: 100% -16px;
}

ul.action-links {
margin: 1em 0;
padding: 0 20px 0 20px; /* LTR */
Expand Down

0 comments on commit f7cf579

Please sign in to comment.