2017-11-01 03:02:35 +00:00
|
|
|
@media print {
|
|
|
|
.mw-revslider-container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-revslider-container {
|
|
|
|
/* This will flip with CSSJanus in case */
|
|
|
|
/* the interface is in RTL */
|
|
|
|
direction: ltr;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid #c8ccd1;
|
|
|
|
|
|
|
|
.mw-revslider-toggle-button.oo-ui-buttonElement-frameless.oo-ui-labelElement {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
/* Overrule OOUI frameless button `margin` */
|
2018-03-23 00:55:03 +00:00
|
|
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
2017-11-01 03:02:35 +00:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-revslider-toggle-button {
|
|
|
|
.oo-ui-buttonElement-button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.oo-ui-iconElement-icon {
|
|
|
|
/* Overrule OOUI iconElement `left` */
|
|
|
|
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
2018-03-23 00:55:03 +00:00
|
|
|
right: 0.28571429em;
|
2017-11-01 03:02:35 +00:00
|
|
|
/* For OOUI-Apex */
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-revslider-slider-wrapper {
|
|
|
|
min-height: 142px;
|
|
|
|
border-top: 1px solid #c8ccd1;
|
|
|
|
padding: 20px 10px;
|
|
|
|
}
|
|
|
|
|
2018-08-09 03:46:39 +00:00
|
|
|
/* Loading spinner code borrowed from
|
|
|
|
https://codepen.io/Volker_E/pen/yqNXMe */
|
|
|
|
.mw-revslider-spinner {
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
max-width: 56px;
|
2017-11-01 03:02:35 +00:00
|
|
|
margin: 60px auto;
|
2018-08-09 03:46:39 +00:00
|
|
|
|
|
|
|
.mw-revslider-bounce,
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
background-color: #72777d;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
border-radius: 100%;
|
|
|
|
-webkit-animation: bouncedelay 1600ms infinite ease-in-out both;
|
|
|
|
animation: bouncedelay 1600ms infinite ease-in-out both;
|
|
|
|
-webkit-animation-delay: -160ms;
|
|
|
|
animation-delay: -160ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
margin-right: 4px;
|
|
|
|
-webkit-animation-delay: -330ms;
|
|
|
|
animation-delay: -330ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
margin-left: 4px;
|
|
|
|
-webkit-animation-delay: 0s;
|
|
|
|
animation-delay: 0s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-03 10:14:05 +00:00
|
|
|
/* Loading spinner animations */
|
2018-08-09 03:46:39 +00:00
|
|
|
@-webkit-keyframes bouncedelay {
|
|
|
|
0%,
|
2019-07-03 10:14:05 +00:00
|
|
|
50%, /* equals 800ms */
|
2018-08-09 03:46:39 +00:00
|
|
|
100% {
|
|
|
|
-webkit-transform: scale( 0.625 );
|
|
|
|
}
|
2018-12-04 23:05:18 +00:00
|
|
|
|
2019-07-03 10:14:05 +00:00
|
|
|
20% { /* equals 320ms */
|
2018-08-09 03:46:39 +00:00
|
|
|
opacity: 0.87;
|
|
|
|
-webkit-transform: scale( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes bouncedelay {
|
|
|
|
0%,
|
2019-07-03 10:14:05 +00:00
|
|
|
50%, /* equals 800ms */
|
2018-08-09 03:46:39 +00:00
|
|
|
100% {
|
|
|
|
-moz-transform: scale( 0.625 );
|
|
|
|
}
|
2018-12-04 23:05:18 +00:00
|
|
|
|
2019-07-03 10:14:05 +00:00
|
|
|
20% { /* equals 320ms */
|
2018-08-09 03:46:39 +00:00
|
|
|
opacity: 0.87;
|
|
|
|
-moz-transform: scale( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bouncedelay {
|
|
|
|
0%,
|
2019-07-03 10:14:05 +00:00
|
|
|
50%, /* equals 800ms */
|
2018-08-09 03:46:39 +00:00
|
|
|
100% {
|
|
|
|
-ms-transform: scale( 0.625 );
|
|
|
|
transform: scale( 0.625 );
|
|
|
|
}
|
2018-12-04 23:05:18 +00:00
|
|
|
|
2019-07-03 10:14:05 +00:00
|
|
|
20% { /* equals 320ms */
|
2018-08-09 03:46:39 +00:00
|
|
|
opacity: 0.87;
|
|
|
|
-ms-transform: scale( 1 );
|
|
|
|
transform: scale( 1 );
|
|
|
|
}
|
2017-11-01 03:02:35 +00:00
|
|
|
}
|