blob: 9c819a65cb230b116486ebc493b8d9ba91fd229a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
.mw-spinner {
background-color: transparent;
background-position: center center;
background-repeat: no-repeat;
}
.mw-spinner-small {
/* @embed */
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;
}
|