2016-05-10 12:42:05 +00:00
|
|
|
.revision {
|
2016-05-18 14:55:39 +00:00
|
|
|
position: absolute;
|
|
|
|
margin-top: 70px;
|
2016-05-19 16:39:58 +00:00
|
|
|
background-color: #e3e3e3;
|
|
|
|
border-color: #e3e3e3;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-05-10 12:42:05 +00:00
|
|
|
.revision:hover {
|
2016-05-19 16:39:58 +00:00
|
|
|
background-color: #cccccc;
|
|
|
|
border-color: #cccccc;
|
2016-05-18 14:55:39 +00:00
|
|
|
transition: all ease 0.2s;
|
2016-04-19 12:45:09 +00:00
|
|
|
-webkit-transition: all ease 0.2s;
|
|
|
|
-moz-transition: all ease 0.2s;
|
|
|
|
-o-transition: all ease 0.2s;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
|
|
|
.revision-up {
|
2016-05-19 16:39:58 +00:00
|
|
|
border-bottom-width: 2px;
|
|
|
|
border-bottom-style: solid;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
|
|
|
.revision-down {
|
2016-05-19 16:39:58 +00:00
|
|
|
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;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.revision-wrapper {
|
|
|
|
position: absolute;
|
2016-05-26 14:12:35 +00:00
|
|
|
cursor: pointer;
|
2016-05-18 14:55:39 +00:00
|
|
|
z-index: 10;
|
|
|
|
height: 140px;
|
|
|
|
}
|
|
|
|
.revision-wrapper:hover {
|
2016-05-19 16:39:58 +00:00
|
|
|
background-color: #f2f2f2;
|
2016-04-19 12:45:09 +00:00
|
|
|
transition: all ease 0.2s;
|
2016-05-18 14:55:39 +00:00
|
|
|
-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;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
|
2016-05-18 10:45:06 +00:00
|
|
|
.revision-tooltip {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2016-05-19 15:16:10 +00:00
|
|
|
.revision-tooltip .tipsy-inner {
|
|
|
|
max-width: none;
|
|
|
|
}
|
2016-05-18 10:45:06 +00:00
|
|
|
|
2016-04-19 12:45:09 +00:00
|
|
|
.revisions {
|
2016-05-18 14:55:39 +00:00
|
|
|
height: 140px;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
.revisions-container {
|
|
|
|
width: 90%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.revisions-container, .arrow {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.arrow {
|
2016-05-18 13:09:22 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 140px;
|
|
|
|
border: #e4e4e4 solid 2px;
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
.arrow:hover{
|
|
|
|
cursor: pointer;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
.left-arrow {
|
2016-05-18 13:09:22 +00:00
|
|
|
margin-right: 30px;
|
|
|
|
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
.right-arrow {
|
2016-05-18 13:09:22 +00:00
|
|
|
margin-left: 30px;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.stopper {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
height: 50px;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.revision-slider {
|
|
|
|
position: relative;
|
2016-04-26 14:58:24 +00:00
|
|
|
margin: auto;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pointer-container {
|
|
|
|
position: absolute;
|
|
|
|
clear: both;
|
2016-04-28 10:57:57 +00:00
|
|
|
height: 1px;
|
2016-05-19 12:01:48 +00:00
|
|
|
top: 57px;
|
2016-04-28 10:57:57 +00:00
|
|
|
margin: auto;
|
2016-04-19 12:45:09 +00:00
|
|
|
z-index: 10;
|
|
|
|
}
|
2016-05-17 12:29:08 +00:00
|
|
|
.lower-pointer {
|
2016-05-19 12:01:48 +00:00
|
|
|
top: 15px;
|
2016-05-17 12:29:08 +00:00
|
|
|
}
|
2016-04-19 12:45:09 +00:00
|
|
|
.pointer {
|
|
|
|
position: absolute !important;
|
|
|
|
z-index: 11;
|
2016-05-19 12:01:48 +00:00
|
|
|
width: 18px;
|
|
|
|
height: 13px;
|
|
|
|
background-repeat: no-repeat;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-05-10 19:15:11 +00:00
|
|
|
|
2016-05-20 08:51:21 +00:00
|
|
|
.revisions-older {
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
.revisions-newer {
|
|
|
|
float:right;
|
|
|
|
}
|
|
|
|
|
2016-05-10 19:15:11 +00:00
|
|
|
#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;
|
|
|
|
}
|