mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-11-14 19:24:42 +00:00
39d8d9229a
I know it doesn't matter, but it was kind of bothering me. Change-Id: Iae9f8b17a3fb5ced362dc2da95e67e20db8af5a5
156 lines
3 KiB
CSS
156 lines
3 KiB
CSS
.mw-revision {
|
|
position: absolute;
|
|
margin-top: 70px;
|
|
background-color: #e3e3e3;
|
|
border-color: #e3e3e3;
|
|
}
|
|
.mw-revision:hover {
|
|
background-color: #cccccc;
|
|
border-color: #cccccc;
|
|
transition: all ease 0.2s;
|
|
-webkit-transition: all ease 0.2s;
|
|
-moz-transition: all ease 0.2s;
|
|
-o-transition: all ease 0.2s;
|
|
}
|
|
.mw-revision-up {
|
|
border-bottom-width: 2px;
|
|
border-bottom-style: solid;
|
|
}
|
|
.mw-revision-down {
|
|
border-top-width: 2px;
|
|
border-top-style: solid;
|
|
}
|
|
|
|
.mw-revision-old {
|
|
background-color: #fee6a8;
|
|
border-color: #e8bd4f;
|
|
}
|
|
.mw-revision-old:hover {
|
|
background-color: #fdc44b;
|
|
border-color: #dda000;
|
|
}
|
|
.mw-revision-new {
|
|
background-color: #c3e2ff;
|
|
border-color: #1e6db8;
|
|
}
|
|
.mw-revision-new:hover {
|
|
background-color: #45a6ff;
|
|
border-color: #065cad;
|
|
}
|
|
.mw-revision-intermediate {
|
|
background-color: #bcbcbc;
|
|
border-color: #989898;
|
|
}
|
|
.mw-revision-intermediate:hover {
|
|
background-color: #a6a6a6;
|
|
border-color: #828282;
|
|
}
|
|
|
|
.mw-revision-wrapper {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
height: 140px;
|
|
}
|
|
.mw-revision-wrapper:hover {
|
|
background-color: #f2f2f2;
|
|
transition: all ease 0.2s;
|
|
-webkit-transition: all ease 0.2s;
|
|
-moz-transition: all ease 0.2s;
|
|
-o-transition: all ease 0.2s;
|
|
}
|
|
|
|
.mw-revision-border-box {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-left: solid 1px white;
|
|
}
|
|
|
|
.mw-revision-tooltip .tipsy-inner {
|
|
max-width: none;
|
|
}
|
|
|
|
.mw-revisions {
|
|
height: 140px;
|
|
}
|
|
.mw-revisions-container {
|
|
width: 90%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.mw-revisions-container, .mw-arrow {
|
|
float: left;
|
|
}
|
|
.mw-arrow {
|
|
width: 20px;
|
|
height: 140px;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.mw-arrow-left {
|
|
margin-right: 30px;
|
|
}
|
|
.mw-arrow-right {
|
|
margin-left: 30px;
|
|
}
|
|
.mw-arrow-enabled, .mw-arrow-disabled {
|
|
border: #ddd solid 2px;
|
|
}
|
|
.mw-arrow-hovered {
|
|
border: #ddd solid 2px;
|
|
background-color: #e5e5e5;
|
|
cursor: pointer;
|
|
}
|
|
.mw-arrow-active {
|
|
border: #ccc solid 2px;
|
|
}
|
|
|
|
.mw-revision-slider {
|
|
position: relative;
|
|
margin: auto;
|
|
}
|
|
|
|
.mw-pointer-container {
|
|
position: absolute;
|
|
clear: both;
|
|
height: 1px;
|
|
left: 55px;
|
|
top: 57px;
|
|
margin: auto;
|
|
z-index: 10;
|
|
}
|
|
.mw-lower-pointer {
|
|
top: 15px;
|
|
}
|
|
.mw-pointer {
|
|
position: absolute !important;
|
|
z-index: 11;
|
|
width: 18px;
|
|
height: 13px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.mw-revisions-older {
|
|
float:left;
|
|
}
|
|
.mw-revisions-newer {
|
|
float:right;
|
|
}
|
|
|
|
#mw-revision-slider-darkness {
|
|
background-color: white;
|
|
filter:alpha(opacity=50); /* IE 5-7 */
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 8 */
|
|
-khtml-opacity: 0.5; /* Safari 1.x */
|
|
-moz-opacity:0.50; /* Netscape */
|
|
opacity: 0.5; /* Good browsers */
|
|
z-index: 200000;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-repeat:no-repeat;
|
|
background-position:center;
|
|
position:absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|