Verified Commit 6aa443c1 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #1974928 by jwilson3, ckrina, chrisfree, ellizard, Mithun S,...

Issue #1974928 by jwilson3, ckrina, chrisfree, ellizard, Mithun S, Manjit.Singh, gauravjeet, corbacho, Bojhan, soumyajit.basu, joelpittet, LewisNyman, star-szr, smustgrave, droplet, Wim Leers, Gábor Hojtsy, aburrows, lauriii, Snugug, rupl, hotpizzas, ericduran, markdorison: Update Drupal's default throbber icons
parent 3ef0e0a2
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
.ajax-progress-throbber .throbber {
  display: inline;
  padding: 1px 6px 2px;
  background: transparent url(../throbber-active.gif) no-repeat 0 center;
  background: transparent url(../throbber-active.svg) no-repeat 0 center;
}
.ajax-progress-throbber .message {
  display: inline;
+2 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 */

.js input.form-autocomplete {
  background-image: url(../throbber-inactive.png);
  background-image: url(../throbber-inactive.svg);
  background-repeat: no-repeat;
  background-position: 100% center; /* LTR */
}
@@ -14,7 +14,7 @@
  background-position: 0% center;
}
.js input.form-autocomplete.ui-autocomplete-loading {
  background-image: url(../throbber-active.gif);
  background-image: url(../throbber-active.svg);
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
+7 −0
Original line number Diff line number Diff line
<svg width="17" height="13" viewBox="0 0 170 130">
  <g stroke="#0b73be" stroke-width="20" stroke-linecap="round" fill="none">
    <circle cx="85" cy="65" r="48" />
    <line x1="85" y1="65" x2="85" y2="17" />
    <animateTransform attributeName="transform" type="rotate" from="0 85 65" to="360 85 65" dur=".72s" repeatCount="indefinite" />
  </g>
</svg>
+3 −0
Original line number Diff line number Diff line
<svg width="17" height="13" viewBox="0 0 170 130">
  <circle stroke="#bcbcbc" stroke-width="20" fill="none" cx="85" cy="65" r="48" />
</svg>
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
.ajax-progress-throbber .throbber {
  display: inline;
  padding: 1px 5px 2px;
  background: transparent url(../../../../../misc/throbber-active.gif) no-repeat 0 center;
  background: transparent url(../../../../../misc/throbber-active.svg) no-repeat 0 center;
}
.ajax-progress-throbber .message {
  display: inline;
Loading