mediawiki-extensions-Multim.../css/ext.multimediaViewer.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

155 lines
2.9 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-author {
font-weight: bold;
}
.mw-mlb-image-metadata {
margin-top: 30px;
width: 64%;
margin: 30px auto;
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-desc {
color: #6f7073;
}
.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.mw-mlb-username-li:before {
background-image: url( '../img/user.svg' );
}
.mw-mlb-image-links li.empty:before {
background-image: none !important;
}
.mw-mlb-image-links li.mw-mlb-datetime-li:before {
background-image: url( '../img/time.svg' );
}
.mw-mlb-image-links li.mw-mlb-datetime-li.empty:before {
background-image: none;
}