mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-11-14 19:24:42 +00:00
93d33916a4
This doesn't fully solve T370572 but already improves the situation a bit, without causing any change in light mode. Notably: The 1px separator between the individual bars was hard-coded white before. I suggest to continue working on this in separate patches, not make this patch more complicated. Bug: T370572 Change-Id: I1a2159221bfc37f23e85e6aa7d6beed1f149163f
95 lines
1.9 KiB
Plaintext
95 lines
1.9 KiB
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
|
|
.mw-revslider-container {
|
|
.client-nojs & {
|
|
display: none;
|
|
}
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
|
|
/* This will flip with CSSJanus in case */
|
|
/* the interface is in RTL */
|
|
direction: ltr;
|
|
position: relative;
|
|
border: @border-width-base @border-style-base @border-color-subtle;
|
|
|
|
.mw-revslider-toggle-button.oo-ui-buttonElement-frameless.oo-ui-labelElement {
|
|
width: 100%;
|
|
text-align: center;
|
|
/* Overrule OOUI frameless button `margin` */
|
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
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 */
|
|
right: 0.28571429em;
|
|
/* For OOUI-Apex */
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
.mw-revslider-slider-wrapper {
|
|
// Same as the .mw-revslider-arrow height
|
|
min-height: 142px;
|
|
border-top: @border-width-base @border-style-base @border-color-subtle;
|
|
padding: 20px 10px;
|
|
// Not a fix for resize issues like T336729 but makes it appear much less broken
|
|
overflow-x: clip;
|
|
}
|
|
|
|
/* Loading spinner code borrowed from
|
|
https://codepen.io/Volker_E/pen/yqNXMe */
|
|
.mw-revslider-spinner {
|
|
white-space: nowrap;
|
|
display: block;
|
|
max-width: 56px;
|
|
margin: 60px auto;
|
|
|
|
.mw-revslider-bounce,
|
|
&::before,
|
|
&::after {
|
|
content: '';
|
|
background-color: #72777d;
|
|
display: block;
|
|
float: left;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: @border-radius-circle;
|
|
animation: bouncedelay 1600ms infinite ease-in-out both;
|
|
animation-delay: -160ms;
|
|
}
|
|
|
|
&::before {
|
|
margin-right: 4px;
|
|
animation-delay: -330ms;
|
|
}
|
|
|
|
&::after {
|
|
margin-left: 4px;
|
|
animation-delay: 0s;
|
|
}
|
|
}
|
|
|
|
@keyframes bouncedelay {
|
|
0%,
|
|
50%, /* equals 800ms */
|
|
100% {
|
|
transform: scale( 0.625 );
|
|
}
|
|
|
|
20% { /* equals 320ms */
|
|
opacity: 0.87;
|
|
transform: scale( 1 );
|
|
}
|
|
}
|