mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.canvasButtons.less
Gergő Tisza 95111d2b73 Use mw-mmv CSS prefix consistently for all things
With apologies to anyone who gets a hundred merge conflicts
because of this :)

We had several different prefix styles (mlb-, mw-mlb-, mw-mmv-,
mw-mmv-mmv-, a few unprefixed), which was getting annoying,
and will be confusing to wiki editors who are trying to figure out
where a given style comes from. Such changes are better done before
going live because it breaks all local CSS tweaks on the wiki,
so I am renaming things now (also removing some stuff which wasnt
used anywhere).

Change-Id: I00447a25f0028e234169c6db941bedc99622eb8d
2014-03-31 21:33:12 +00:00

102 lines
1.6 KiB
Plaintext

@import "mmv.mixins";
@navbutton-width: 18px;
@buttons-offset: 5px;
.mw-mmv-close,
.mw-mmv-fullscreen,
.mw-mmv-next-image,
.mw-mmv-prev-image {
cursor: pointer;
position: fixed;
background-repeat: no-repeat;
opacity: 0.8;
border: none;
z-index: 1003;
&:hover {
opacity: 1;
}
.unselectable;
}
.mw-mmv-close.hidden,
.mw-mmv-fullscreen.hidden,
.mw-mmv-next-image.hidden,
.mw-mmv-prev-image.hidden {
display: none;
}
.cursor-hidden {
.mw-mmv-close, .mw-mmv-fullscreen, .mw-mmv-next-image, .mw-mmv-prev-image {
cursor: none;
}
}
.mw-mmv-close,
.mw-mmv-fullscreen {
right: @buttons-offset;
left: auto;
transition: opacity 0.25s;
background-position: center;
margin-top: 14px;
margin-right: 14px;
}
.mw-mmv-next-image,
.mw-mmv-prev-image {
top: -999px;
width: 80px;
height: 120px;
transition: opacity 0.25s, margin 0.25s;
&.disabled {
display: none;
cursor: none;
}
}
.mw-mmv-close {
top: @buttons-offset;
/* @embed */
background-image: url(img/mw-close.svg);
height: 23px;
width: 23px;
}
.mw-mmv-fullscreen {
top: (@buttons-offset + 37px);
/* @embed */
background-image: url(img/mw-fullscreen-ltr.svg);
width: 21px;
height: 22px;
}
.jq-fullscreened .mw-mmv-fullscreen {
/* @embed */
background-image: url(img/mw-defullscreen-ltr.svg);
}
.mw-mmv-next-image {
/* @embed */
background-image: url(img/next-ltr.svg);
background-position: right;
right: @navbutton-width;
&:hover {
margin-right: -4px;
}
}
.mw-mmv-prev-image {
/* @embed */
background-image: url(img/prev-ltr.svg);
background-position: left;
left: @navbutton-width;
&:hover {
margin-left: -4px;
}
}