mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 04:43:18 +00:00
1ae138c9e7
Change-Id: I4aa53d50bcd4880f341dfb59b7a451e2d5bda2ad
41 lines
892 B
Plaintext
41 lines
892 B
Plaintext
@expand-link-border-color: #dddddd;
|
|
|
|
.mw-mmv-overlay {
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 1000;
|
|
background-color: rgb(0,0,0);
|
|
}
|
|
|
|
body.mw-mmv-lightbox-open {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
body.mw-mmv-lightbox-open #mw-page-base,
|
|
body.mw-mmv-lightbox-open #mw-head-base,
|
|
body.mw-mmv-lightbox-open #mw-navigation,
|
|
body.mw-mmv-lightbox-open #mw-footer,
|
|
body.mw-mmv-lightbox-open #content {
|
|
/** Stop the article from scrolling in the background */
|
|
display: none;
|
|
}
|
|
|
|
body.mw-mmv-lightbox-open > :not(.mw-mmv-overlay, .mw-mmv-wrapper) {
|
|
/** Stop the article from scrolling in the background */
|
|
display: none;
|
|
}
|
|
|
|
.mw-mmv-view-expanded {
|
|
display: inline-block;
|
|
border: 1px solid @expand-link-border-color;
|
|
padding: 5px;
|
|
padding-left: 34px;
|
|
/* @embed */
|
|
background-image: url('img/expand.svg');
|
|
background-position: left;
|
|
background-repeat: no-repeat;
|
|
}
|