| 1 |
// WARNING : This will load -outside- the #maxbutton namespacing, potentially affecting WP in general |
| 2 |
|
| 3 |
/* Modal */ |
| 4 |
|
| 5 |
// colorpicker |
| 6 |
.mb_colorpicker { |
| 7 |
z-index: 200; |
| 8 |
|
| 9 |
} |
| 10 |
|
| 11 |
|
| 12 |
.ads |
| 13 |
{ |
| 14 |
.button-primary { |
| 15 |
display: block; |
| 16 |
margin: 0 auto 20px auto; |
| 17 |
width: 210px; |
| 18 |
text-align: center; |
| 19 |
overflow: visible; |
| 20 |
} |
| 21 |
} |
| 22 |
|
| 23 |
.max-load-spinner { |
| 24 |
background: url('/wp-admin/images/wpspin_light.gif') no-repeat; |
| 25 |
background-size: 16px 16px; |
| 26 |
opacity: .9; |
| 27 |
//filter: alpha(opacity=70); |
| 28 |
width: 16px; |
| 29 |
height: 16px; |
| 30 |
display: inline-block; |
| 31 |
vertical-align: middle; |
| 32 |
position: absolute; |
| 33 |
top: 50%; |
| 34 |
left: 50%; |
| 35 |
margin-left: -8px; |
| 36 |
margin-top: -8px; |
| 37 |
z-index: 10; |
| 38 |
&.large { |
| 39 |
background: url('/wp-admin/images/wpspin_light-2x.gif') no-repeat; |
| 40 |
width: 32px; |
| 41 |
height: 32px; |
| 42 |
} |
| 43 |
} |
| 44 |
|
| 45 |
.max-load-overlay { |
| 46 |
position: absolute; |
| 47 |
top: 0; |
| 48 |
left: 0; |
| 49 |
right: 0; |
| 50 |
bottom: 0; |
| 51 |
opacity: 0.80; |
| 52 |
background-color: #f0f0f0; |
| 53 |
z-index: 9; |
| 54 |
} |
| 55 |
|