mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.dialog.less

42 lines
841 B
Plaintext
Raw Normal View History

@import '../mmv.mixins';
@import '../mmv.globals';
.mw-mmv-dialog {
@background-color: rgb( 255, 255, 255 );
@shadow-color: #aaa;
@dialog-width: 450px;
position: fixed;
right: 58px;
display: none;
width: @dialog-width;
height: @dialog-height;
background-color: @background-color;
box-shadow: 0 2px 0 @shadow-color;
.box-round( @border-radius );
z-index: 1004;
.mw-mmv-dialog-down-arrow {
right: 48px;
background-color: @background-color;
width: @arrow-size;
height: @arrow-size;
.rotate( -45deg );
position: fixed;
}
.mw-mmv-dialog-copy {
/* @embed */
background-image: url( img/pasting.svg );
background-size: contain;
background-position: right center;
background-repeat: no-repeat;
&:hover {
/* @embed */
background-image: url( img/pasting-hover.svg );
text-decoration: none;
}
}
}