mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.canvasButtons.less
Prateek Saxena 45110a7090 Use <button> instead of <div>
* Buttons are semantically better.
* Neither <div> nor <button> elements can have the 'alt' attribute
  so switching to 'title' instead.

Reverts parts of I6ea62124018b1a0ec5110bb500f690cb2368f102.

Bug: T58471
Change-Id: I991b40d3387f8d6dd7cdad8ccc5cc9660b9f139a
2017-03-22 12:06:15 +05:30

143 lines
2.6 KiB
Plaintext

@import '../mmv.globals';
@import '../mmv.mixins';
.mw-mmv-download-button,
.mw-mmv-reuse-button,
.mw-mmv-options-button,
.mw-mmv-close,
.mw-mmv-fullscreen,
.mw-mmv-next-image,
.mw-mmv-prev-image {
cursor: pointer;
position: fixed;
background-color: transparent;
background-repeat: no-repeat;
.opacity( 0.8 );
border: 0;
z-index: 1003;
&.mw-mmv-dialog-open,
&:hover {
.opacity( 1 );
}
.unselectable;
}
.mw-mmv-download-button.hidden,
.mw-mmv-reuse-button.hidden,
.mw-mmv-options-button.hidden,
.mw-mmv-close.hidden,
.mw-mmv-fullscreen.hidden,
.mw-mmv-next-image.hidden,
.mw-mmv-prev-image.hidden {
display: none;
}
.cursor-hidden {
.mw-mmv-download-button,
.mw-mmv-reuse-button,
.mw-mmv-close,
.mw-mmv-fullscreen,
.mw-mmv-next-image,
.mw-mmv-prev-image {
cursor: none;
}
}
.mw-mmv-download-button,
.mw-mmv-reuse-button,
.mw-mmv-options-button,
.mw-mmv-close,
.mw-mmv-fullscreen {
right: @buttons-offset-right;
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-right;
/* @embed */
background-image: url( img/mw-close.svg );
height: 23px;
width: 23px;
}
.mw-mmv-fullscreen {
top: ( @buttons-offset-right + ( @buttons-offset-each-top ) );
/* @embed */
background-image: url( img/mw-fullscreen-ltr.svg );
width: 21px;
height: 22px;
}
.mw-mmv-options-button {
top: ( @buttons-offset-right + ( 2 * @buttons-offset-each-top ) );
/* @embed */
background-image: url( img/gear.svg );
height: 23px;
width: 23px;
}
.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;
}
}
.mw-mmv-reuse-button {
right: @buttons-offset-right - 2px;
bottom: @buttons-offset-right + @metadatabar-above-fold-height + @progress-bar-height;
/* @embed */
background-image: url( img/use-ltr.svg );
height: 24px;
width: 24px;
}
.mw-mmv-download-button {
bottom: @buttons-offset-right + @metadatabar-above-fold-height + @progress-bar-height + 37px;
/* @embed */
background-image: url( img/mw-download.svg );
height: 24px;
width: 24px;
}