mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
4f54b81c03
Previously 'up' brought the panel up, and 'down' brought it down, which might conflict with expectations on scrolling. Up/down keys now move the metadata panel to the opposite state, no matter what the current state was. Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/697 Change-Id: I53079d81042afb86354bf44e9dfd662adf1576cb
100 lines
1.6 KiB
Plaintext
100 lines
1.6 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 );
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.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;
|
|
}
|