Merge "Don't return invalid XML from paraminfo when one of parameter values is null"
[lhc/web/wiklou.git] / resources / jquery / jquery.spinner.css
index d3dd093..4a77528 100644 (file)
@@ -1,8 +1,40 @@
-.loading-spinner {
+.mw-spinner {
+       background-color: transparent;
+       background-position: center center;
+       background-repeat: no-repeat;
+}
+
+.mw-spinner-small {
        /* @embed */
-       background: transparent url('images/spinner.gif');
-       height: 16px;
-       width: 16px;
+       background-image: url(images/spinner.gif);
+       height: 20px;
+       width: 20px;
+       /* Avoid issues with .mw-spinner-block when floated without width. */
+       min-width: 20px;
+}
+
+.mw-spinner-large {
+       /* @embed */
+       background-image: url(images/spinner-large.gif);
+       height: 32px;
+       width: 32px;
+       /* Avoid issues with .mw-spinner-block when floated without width. */
+       min-width: 32px;
+}
+
+.mw-spinner-block {
+       display: block;
+       /* This overrides width from .mw-spinner-large / .mw-spinner-small,
+        * This is where the min-width kicks in.
+        */
+       width: 100%;
+}
+
+.mw-spinner-inline {
        display: inline-block;
        vertical-align: middle;
-}
\ No newline at end of file
+       
+       /* IE < 8 */
+       zoom: 1;
+       *display: inline;
+}