mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-12-13 07:48:37 +00:00
f642fb44dc
This introduces styles for "not available" arrow, and styles for hovered arrow and "active" (under left mouse button click arrow). Bug: T135970 Change-Id: If5f7df475eef36dcb6d038297ad97717b8c96f77
157 lines
2.8 KiB
CSS
Executable file
157 lines
2.8 KiB
CSS
Executable file
.revision {
|
|
position: absolute;
|
|
margin-top: 70px;
|
|
background-color: #e3e3e3;
|
|
border-color: #e3e3e3;
|
|
}
|
|
.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;
|
|
}
|
|
.revision-up {
|
|
border-bottom-width: 2px;
|
|
border-bottom-style: solid;
|
|
}
|
|
.revision-down {
|
|
border-top-width: 2px;
|
|
border-top-style: solid;
|
|
}
|
|
|
|
.revision-old {
|
|
background-color: #fee6a8;
|
|
border-color: #e8bd4f;
|
|
}
|
|
.revision-old:hover {
|
|
background-color: #fdc44b;
|
|
border-color: #dda000;
|
|
}
|
|
.revision-new {
|
|
background-color: #c3e2ff;
|
|
border-color: #1e6db8;
|
|
}
|
|
.revision-new:hover {
|
|
background-color: #45a6ff;
|
|
border-color: #065cad;
|
|
}
|
|
.revision-intermediate {
|
|
background-color: #bcbcbc;
|
|
border-color: #989898;
|
|
}
|
|
.revision-intermediate:hover {
|
|
background-color: #a6a6a6;
|
|
border-color: #828282;
|
|
}
|
|
|
|
.revision-wrapper {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
height: 140px;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
.revision-border-box {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-left: solid 1px white;
|
|
}
|
|
|
|
.revision-tooltip {
|
|
text-align: center;
|
|
}
|
|
.revision-tooltip .tipsy-inner {
|
|
max-width: none;
|
|
}
|
|
|
|
.revisions {
|
|
height: 140px;
|
|
}
|
|
.revisions-container {
|
|
width: 90%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.revisions-container, .arrow {
|
|
float: left;
|
|
}
|
|
.arrow {
|
|
width: 20px;
|
|
height: 140px;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.arrow-left {
|
|
margin-right: 30px;
|
|
}
|
|
.arrow-right {
|
|
margin-left: 30px;
|
|
}
|
|
.arrow-enabled, .arrow-disabled {
|
|
border: #ddd solid 2px;
|
|
}
|
|
.arrow-hovered {
|
|
border: #ddd solid 2px;
|
|
background-color: #e5e5e5;
|
|
cursor: pointer;
|
|
}
|
|
.arrow-active {
|
|
border: #ccc solid 2px;
|
|
}
|
|
|
|
.revision-slider {
|
|
position: relative;
|
|
margin: auto;
|
|
}
|
|
|
|
.pointer-container {
|
|
position: absolute;
|
|
clear: both;
|
|
height: 1px;
|
|
left: 55px;
|
|
top: 57px;
|
|
margin: auto;
|
|
z-index: 10;
|
|
}
|
|
.lower-pointer {
|
|
top: 15px;
|
|
}
|
|
.pointer {
|
|
position: absolute !important;
|
|
z-index: 11;
|
|
width: 18px;
|
|
height: 13px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.revisions-older {
|
|
float:left;
|
|
}
|
|
.revisions-newer {
|
|
float:right;
|
|
}
|
|
|
|
#revision-slider-darkness {
|
|
background-color: white;
|
|
filter:alpha(opacity=50); /* IE */
|
|
opacity: 0.5; /* Safari, Opera */
|
|
-moz-opacity:0.50; /* FireFox */
|
|
z-index: 20;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-repeat:no-repeat;
|
|
background-position:center;
|
|
position:absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|