mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
ba5a1b7516
- open.svg icon added for the "view in browser" feature form the share panel. - expand.svg icon updated for better icon consistency (spacing also adjusted in the CSS) Change-Id: Id6176d8f9b4884c9aabde05f1639500d3349f9a7
41 lines
897 B
Plaintext
41 lines
897 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 10px;
|
|
padding-left: 35px;
|
|
/* @embed */
|
|
background-image: url('img/expand.svg');
|
|
background-position: left;
|
|
background-repeat: no-repeat;
|
|
}
|