mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
0a265d7e96
- fix sizing error so that the image actually fits the screen - hide some stuff that didn't work properly in fullscreen anyway (commons/survey buttons just exited fullscreen, reuse menu did not fade with the metadata panel, view terms link didn't do anything) - move metadata scroller CSS rules into metadata scroller LESS file - disable invite animation which broke the opacity transition - move opacity transition to the main metadata panel element; remove background-color transition which is pointless since there is an opacity transition Change-Id: Ib26160cc6431ea007dab8441c634d0faf9ee1d0a
108 lines
1.7 KiB
Plaintext
108 lines
1.7 KiB
Plaintext
@import "../mmv.globals";
|
|
@import "../mmv.mixins";
|
|
@import "mediawiki.mixins.animation";
|
|
|
|
.mw-mmv-post-image {
|
|
.animation( mw-mmv-appear-animation 0.5s ease 0s 1 normal forwards );
|
|
&.invite {
|
|
.animation( mw-mmv-invite-animation 1s ease 0s 1 normal forwards );
|
|
}
|
|
|
|
.jq-fullscreened & {
|
|
.animation(none);
|
|
}
|
|
}
|
|
|
|
.mw-mmv-appear-animation() {
|
|
0% {
|
|
opacity: 0.6;
|
|
}
|
|
50% {
|
|
opacity: 0.9;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes mw-mmv-appear-animation {
|
|
.mw-mmv-appear-animation;
|
|
}
|
|
|
|
@-moz-keyframes mw-mmv-appear-animation {
|
|
.mw-mmv-appear-animation;
|
|
}
|
|
|
|
@-o-keyframes mw-mmv-appear-animation {
|
|
.mw-mmv-appear-animation;
|
|
}
|
|
|
|
@keyframes mw-mmv-appear-animation {
|
|
.mw-mmv-appear-animation;
|
|
}
|
|
|
|
.mw-mmv-invite-animation() {
|
|
0% {
|
|
margin-top: 0px;
|
|
}
|
|
33% {
|
|
margin-top: -30px;
|
|
}
|
|
100% {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes mw-mmv-invite-animation {
|
|
.mw-mmv-invite-animation;
|
|
}
|
|
|
|
@-moz-keyframes mw-mmv-invite-animation {
|
|
.mw-mmv-invite-animation;
|
|
}
|
|
|
|
@-o-keyframes mw-mmv-invite-animation {
|
|
.mw-mmv-invite-animation;
|
|
}
|
|
|
|
@keyframes mw-mmv-invite-animation {
|
|
.mw-mmv-invite-animation;
|
|
}
|
|
|
|
.mw-mmv-drag-affordance {
|
|
width: 100%;
|
|
height: @metadatabar-drag-height;
|
|
cursor: pointer;
|
|
|
|
.jq-fullscreened & {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mw-mmv-drag-icon {
|
|
width: 64px;
|
|
height: @metadatabar-drag-height;
|
|
/* @embed */
|
|
background-image: url(img/drag.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center bottom;
|
|
margin: 0 auto;
|
|
.opacity(0.7);
|
|
transition: opacity 0.25s;
|
|
|
|
&.pointing-down {
|
|
background-position: center top;
|
|
.rotate(180deg);
|
|
}
|
|
|
|
.mw-mmv-post-image.invite & {
|
|
/* @embed */
|
|
background-image: url(img/drag-active.svg);
|
|
.opacity(0.9);
|
|
}
|
|
}
|
|
|
|
.mw-mmv-post-image:hover .mw-mmv-drag-icon {
|
|
.opacity(1);
|
|
}
|