2016-07-18 14:24:02 +00:00
|
|
|
@import '../mmv.mixins';
|
|
|
|
@import '../mmv.globals';
|
2014-09-16 20:33:05 +00:00
|
|
|
|
|
|
|
.mw-mmv-dialog {
|
2016-07-18 14:24:02 +00:00
|
|
|
@background-color: rgb( 255, 255, 255 );
|
|
|
|
@shadow-color: #aaa;
|
2014-09-16 20:33:05 +00:00
|
|
|
@dialog-width: 450px;
|
|
|
|
|
|
|
|
position: fixed;
|
2014-09-18 20:37:02 +00:00
|
|
|
right: 58px;
|
2014-09-16 20:33:05 +00:00
|
|
|
display: none;
|
|
|
|
width: @dialog-width;
|
|
|
|
height: @dialog-height;
|
|
|
|
background-color: @background-color;
|
|
|
|
box-shadow: 0 2px 0 @shadow-color;
|
2016-07-18 14:24:02 +00:00
|
|
|
.box-round( @border-radius );
|
2014-09-16 20:33:05 +00:00
|
|
|
z-index: 1004;
|
|
|
|
|
|
|
|
.mw-mmv-dialog-down-arrow {
|
2014-09-18 20:37:02 +00:00
|
|
|
right: 48px;
|
2014-09-16 20:33:05 +00:00
|
|
|
background-color: @background-color;
|
|
|
|
width: @arrow-size;
|
|
|
|
height: @arrow-size;
|
2016-07-18 14:24:02 +00:00
|
|
|
.rotate( -45deg );
|
2014-09-16 20:33:05 +00:00
|
|
|
position: fixed;
|
|
|
|
}
|
2016-12-28 16:32:28 +00:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
2014-09-16 20:33:05 +00:00
|
|
|
}
|