mediawiki-extensions-Multim.../css/multilightbox.css
Mark Holmquist 0719e17a6b Add source and authour to the title div
Strips out complex formatting, which should be useful later on as well.

Depends on:

* core
:* I77303d8e535fc1c42e14cfb853814e5c434a81ec
* CommonsMetadata
:* I5e6bc45f9751641e16426231dabcc8277b86fee0

Change-Id: Id835fd8133b9762e7bec10783f4fa4b983177aed
2013-10-24 15:59:24 -07:00

93 lines
1.4 KiB
CSS

.mlb-overlay {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 1000;
background-color: rgba(0,0,0,0.9);
}
.mlb-wrapper {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 1001;
}
.mlb-main {
margin-top: 20px;
width: 80%;
margin-right: auto;
margin-left: auto;
position: relative;
}
.mlb-image {
width: 100%;
}
.mlb-image img {
display: block;
margin-right: auto;
margin-left: auto;
}
.mlb-controls {
margin-right: auto;
margin-left: auto;
width: 80%;
min-height: 32px;
border-bottom: 1px solid #7d7c81;
margin-bottom: 40px;
position: relative;
}
.mlb-close {
cursor: pointer;
background-image: url("../img/close.svg");
width: 32px;
height: 32px;
border-right: 1px solid #7d7c81;
border-bottom: 1px solid #7d7c81;
position: absolute;
bottom: -1px;
left: -32px;
}
.mlb-fullscreen {
cursor: pointer;
background-image: url("../img/fullscreen.svg");
width: 32px;
height: 32px;
border-left: 1px solid #7d7c81;
border-bottom: 1px solid #7d7c81;
position: absolute;
bottom: -1px;
right: -32px;
}
.mlb-fullscreen-div {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 1002;
}
.mlb-fullscreen-div .mlb-main {
margin-top: 10px;
width: 100%;
}
.mlb-fullscreen-div .mlb-fullscreen {
background-image: url("../img/defullscreen.svg");
}
.mw-mlb-credit.empty {
display: none;
}