build: Enable declaration-block-no-duplicate-properties stylelint rule
[lhc/web/wiklou.git] / resources / src / jquery / jquery.spinner.css
1 .mw-spinner {
2 background-color: transparent;
3 background-position: center center;
4 background-repeat: no-repeat;
5 }
6
7 .mw-spinner-small {
8 /* @embed */
9 background-image: url( images/spinner.gif );
10 height: 20px;
11 width: 20px;
12 /* Avoid issues with .mw-spinner-block when floated without width. */
13 min-width: 20px;
14 }
15
16 .mw-spinner-large {
17 /* @embed */
18 background-image: url( images/spinner-large.gif );
19 height: 32px;
20 width: 32px;
21 /* Avoid issues with .mw-spinner-block when floated without width. */
22 min-width: 32px;
23 }
24
25 .mw-spinner-block {
26 display: block;
27 /* This overrides width from .mw-spinner-large / .mw-spinner-small,
28 * This is where the min-width kicks in.
29 */
30 width: 100%;
31 }
32
33 .mw-spinner-inline {
34 display: inline-block;
35 vertical-align: middle;
36
37 /* IE < 8 */
38 zoom: 1;
39 *display: inline; /* stylelint-disable-line declaration-block-no-duplicate-properties */
40 }