2016-07-18 14:24:02 +00:00
|
|
|
@import '../mmv.mixins';
|
|
|
|
@import '../mmv.globals';
|
2014-09-16 20:33:05 +00:00
|
|
|
|
2017-03-02 23:45:42 +00:00
|
|
|
@background-color: #fff;
|
|
|
|
@dialog-width: 450px;
|
2014-12-07 08:09:04 +00:00
|
|
|
@box-shadow-dialog: 0 2px 2px 0 darken( @background-color, 33.3% );
|
2014-09-16 20:33:05 +00:00
|
|
|
|
2017-03-02 23:45:42 +00:00
|
|
|
.mw-mmv-dialog {
|
2014-09-16 20:33:05 +00:00
|
|
|
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;
|
2017-03-02 23:45:42 +00:00
|
|
|
box-shadow: @box-shadow-dialog;
|
|
|
|
border-radius: @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-12-07 08:09:04 +00:00
|
|
|
|
|
|
|
.mw-mmv-dialog-warning {
|
|
|
|
background-color: @dialog-warning-color;
|
|
|
|
}
|
2014-09-16 20:33:05 +00:00
|
|
|
}
|