2014-04-01 01:41:57 +00:00
|
|
|
@import "mmv.globals";
|
|
|
|
@import "mmv.mixins";
|
2014-03-17 06:32:51 +00:00
|
|
|
|
2013-11-13 00:43:46 +00:00
|
|
|
/**
|
|
|
|
* Override multilightbox styles that don't apply to us
|
|
|
|
*/
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-wrapper {
|
2013-12-30 23:12:42 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: auto;
|
|
|
|
}
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-main {
|
2013-12-30 23:12:42 +00:00
|
|
|
height: auto;
|
2014-02-03 04:04:20 +00:00
|
|
|
|
|
|
|
.jq-fullscreened {
|
|
|
|
background-color: black;
|
|
|
|
}
|
2013-12-30 23:12:42 +00:00
|
|
|
}
|
|
|
|
|
2014-02-03 04:04:20 +00:00
|
|
|
/**
|
|
|
|
* Some variables
|
|
|
|
*/
|
2014-04-01 01:41:57 +00:00
|
|
|
@bottom-height: (@metadatabar-top-content-height + @metadatabar-drag-height);
|
2014-02-06 10:23:03 +00:00
|
|
|
@metadata-background: rgb(251, 251, 251);
|
2014-02-03 04:04:20 +00:00
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-image-wrapper,
|
|
|
|
.mw-mmv-controls {
|
2013-11-13 00:43:46 +00:00
|
|
|
top: 0px;
|
2014-02-03 04:04:20 +00:00
|
|
|
bottom: @bottom-height;
|
2013-11-13 00:43:46 +00:00
|
|
|
}
|
2013-08-07 08:59:08 +00:00
|
|
|
|
2014-02-06 10:23:03 +00:00
|
|
|
.jq-fullscreened {
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-image-wrapper,
|
|
|
|
.mw-mmv-post-image,
|
|
|
|
.mw-mmv-controls {
|
2014-02-06 10:23:03 +00:00
|
|
|
bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-drag-affordance {
|
2014-02-06 10:23:03 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-post-image,
|
|
|
|
.mw-mmv-controls {
|
2014-02-06 10:23:03 +00:00
|
|
|
@fullscreen-padding: 10px;
|
|
|
|
padding: (@fullscreen-padding / 2) 0;
|
2014-04-01 01:41:57 +00:00
|
|
|
height: (@metadatabar-top-content-height + @fullscreen-padding);
|
2014-02-06 10:23:03 +00:00
|
|
|
background-color: rgba(251, 251, 251, 0);
|
|
|
|
transition: background-color 0.25s;
|
|
|
|
min-height: 0;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: @metadata-background;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-post-image {
|
2014-02-06 10:23:03 +00:00
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-controls {
|
2014-02-06 10:23:03 +00:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2014-01-06 21:53:42 +00:00
|
|
|
}
|
|
|
|
|
2014-02-18 08:25:48 +00:00
|
|
|
.cursor-hidden {
|
|
|
|
cursor: none;
|
|
|
|
}
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-image-wrapper {
|
2013-12-30 23:12:42 +00:00
|
|
|
position: fixed;
|
2013-11-13 00:43:46 +00:00
|
|
|
}
|
2013-08-07 08:59:08 +00:00
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-post-image {
|
2013-12-30 23:12:42 +00:00
|
|
|
bottom: auto;
|
2013-11-13 00:43:46 +00:00
|
|
|
height: auto;
|
2014-03-11 18:42:51 +00:00
|
|
|
color: #333333;
|
2014-02-03 04:04:20 +00:00
|
|
|
background-color: @metadata-background;
|
2014-01-07 15:01:48 +00:00
|
|
|
position: absolute;
|
2014-02-03 04:04:20 +00:00
|
|
|
min-height: (@bottom-height + 1);
|
2014-02-25 13:23:08 +00:00
|
|
|
opacity: 0;
|
2013-11-13 00:43:46 +00:00
|
|
|
}
|
2013-08-07 08:59:08 +00:00
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
.mw-mmv-controls {
|
2013-12-30 23:12:42 +00:00
|
|
|
height: auto;
|
2014-01-07 15:01:48 +00:00
|
|
|
border-bottom: 1px solid #cccccc;
|
2013-11-13 00:43:46 +00:00
|
|
|
}
|