mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-24 00:03:56 +00:00
509416ce8d
Change-Id: Icfab093a44530949d1672a683fb8d4c0e7b901fc
134 lines
2.5 KiB
CSS
134 lines
2.5 KiB
CSS
.mw-lightbox-title-div {
|
|
text-align: left;
|
|
padding-left: 10px;
|
|
font-weight: bold;
|
|
|
|
position: absolute;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
height: 50px;
|
|
|
|
/* FF 3.6+ */
|
|
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
|
|
|
|
/* Chrome, Safari 4+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
|
|
|
|
/* Chrome 10+, Safari 5.1+ */
|
|
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
|
|
|
|
/* Opera 11.10+ */
|
|
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
|
|
|
|
/* IE10+ */
|
|
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
|
|
|
|
/* W3C */
|
|
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
|
|
|
|
/* IE 6-9 */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
|
|
}
|
|
|
|
.mw-lightbox-extra-info-div {
|
|
height: 50px;
|
|
position: absolute;
|
|
bottom: -50px;
|
|
right: 0px;
|
|
left: 0px;
|
|
|
|
text-align: left;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.mw-lightbox-extra-info-div a,
|
|
.mw-lightbox-extra-info-div a:hover,
|
|
.mw-lightbox-extra-info-div a:visited,
|
|
.mw-lightbox-extra-info-div a:active,
|
|
.mw-lightbox-extra-info-div a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.mw-lightbox .lb-container {
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
}
|
|
|
|
.mlb-fullscreen-div {
|
|
background-color: rgb( 255, 255, 255 );
|
|
}
|
|
|
|
.mlb-overlay {
|
|
background-color: rgba( 255, 255, 255, 0.9 );
|
|
}
|
|
|
|
.mlb-close {
|
|
background-image: url( '../img/mw-close.svg' );
|
|
}
|
|
|
|
.mlb-fullscreen-div .mlb-fullscreen {
|
|
background-image: url( '../img/mw-defullscreen.svg' );
|
|
}
|
|
|
|
.mlb-fullscreen {
|
|
background-image: url( '../img/mw-fullscreen.svg' );
|
|
}
|
|
|
|
.mw-mlb-title-contain {
|
|
vertical-align: middle;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.mw-mlb-title {
|
|
margin-bottom: 1px;
|
|
margin-top: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.mw-mlb-image-metadata {
|
|
margin-top: 30px;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.mw-mlb-image-desc-div,
|
|
.mw-mlb-image-links-div {
|
|
width: 50%;
|
|
position: absolute;
|
|
top: 0px;
|
|
}
|
|
|
|
.mw-mlb-image-desc-div {
|
|
left: 0px;
|
|
}
|
|
|
|
.mw-mlb-image-links-div {
|
|
right: 0px;
|
|
}
|
|
|
|
.mw-mlb-image-links li {
|
|
list-style: none;
|
|
}
|
|
|
|
.mw-mlb-image-links li:before {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
height: 16px;
|
|
width: 16px;
|
|
content: ' ';
|
|
margin-right: 10px;
|
|
background-size: contain;
|
|
}
|
|
|
|
.mw-mlb-image-links li.mw-mlb-repo-li:before {
|
|
background-image: url( '../img/repo.svg' );
|
|
}
|
|
|
|
.mw-mlb-image-links li.empty:before {
|
|
background-image: none !important;
|
|
}
|