2016-06-30 20:21:10 +00:00
|
|
|
/* stylelint-disable selector-no-id */
|
|
|
|
/* TODO: No need to use IDs, they should be replaced with classes */
|
2016-05-21 00:10:08 +00:00
|
|
|
#mw-revision-slider-container {
|
2016-06-30 20:21:10 +00:00
|
|
|
/* This will flip with CSSJanus in case */
|
|
|
|
/* the interface is in RTL */
|
|
|
|
direction: ltr;
|
|
|
|
position: relative;
|
2016-05-21 00:10:08 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision {
|
2016-06-30 20:21:10 +00:00
|
|
|
position: relative;
|
|
|
|
margin-top: 70px;
|
|
|
|
background-color: #e3e3e3;
|
|
|
|
border-color: #e3e3e3;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision:hover {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #ccc;
|
|
|
|
border-color: #ccc;
|
|
|
|
transition: all ease 0.2s;
|
|
|
|
-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
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-up {
|
2016-06-30 20:21:10 +00:00
|
|
|
border-bottom-width: 2px;
|
|
|
|
border-bottom-style: solid;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-down {
|
2016-06-30 20:21:10 +00:00
|
|
|
border-top-width: 2px;
|
|
|
|
border-top-style: solid;
|
2016-05-19 16:39:58 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-old {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #fee6a8;
|
|
|
|
border-color: #e8bd4f;
|
2016-05-19 16:39:58 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-old:hover {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #fdc44b;
|
|
|
|
border-color: #dda000;
|
2016-05-19 16:39:58 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-new {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #c3e2ff;
|
|
|
|
border-color: #1e6db8;
|
2016-05-19 16:39:58 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-new:hover {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #45a6ff;
|
|
|
|
border-color: #065cad;
|
2016-05-19 16:39:58 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-intermediate {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #bcbcbc;
|
|
|
|
border-color: #989898;
|
2016-05-19 16:39:58 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-intermediate:hover {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #a6a6a6;
|
|
|
|
border-color: #828282;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-wrapper {
|
2016-06-30 20:21:10 +00:00
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 10;
|
|
|
|
height: 140px;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
|
|
|
.mw-revision-wrapper:hover,
|
|
|
|
.mw-revision-wrapper-hovered {
|
|
|
|
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;
|
2016-05-18 14:55:39 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-border-box {
|
2016-06-30 20:21:10 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
border-left: solid 1px #fff;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-tooltip .tipsy-inner {
|
2016-06-30 20:21:10 +00:00
|
|
|
max-width: none;
|
2016-05-19 15:16:10 +00:00
|
|
|
}
|
2016-05-18 10:45:06 +00:00
|
|
|
|
2016-06-15 11:56:10 +00:00
|
|
|
.mw-revision-tooltip .mw-positive-change {
|
2016-06-30 20:21:10 +00:00
|
|
|
color: #006400;
|
2016-06-15 11:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mw-revision-tooltip .mw-negative-change {
|
2016-06-30 20:21:10 +00:00
|
|
|
color: #8b0000;
|
2016-06-15 11:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mw-revision-tooltip .mw-no-change {
|
2016-06-30 20:21:10 +00:00
|
|
|
color: #aaa;
|
2016-06-15 11:56:10 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revisions {
|
2016-06-30 20:21:10 +00:00
|
|
|
height: 140px;
|
|
|
|
white-space: nowrap;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revisions-container {
|
2016-06-30 20:21:10 +00:00
|
|
|
width: 90%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
|
|
|
.mw-revisions-container,
|
|
|
|
.mw-arrow {
|
|
|
|
float: left;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-arrow {
|
2016-06-30 20:21:10 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 140px;
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
2016-05-18 13:09:22 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-21 00:10:08 +00:00
|
|
|
.mw-arrow-backwards {
|
2016-06-30 20:21:10 +00:00
|
|
|
margin-right: 30px;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-21 00:10:08 +00:00
|
|
|
.mw-arrow-forwards {
|
2016-06-30 20:21:10 +00:00
|
|
|
margin-left: 30px;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
|
|
|
.mw-arrow-enabled,
|
|
|
|
.mw-arrow-disabled {
|
|
|
|
border: #ddd solid 2px;
|
2016-05-27 14:14:16 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-arrow-hovered {
|
2016-06-30 20:21:10 +00:00
|
|
|
border: #ddd solid 2px;
|
|
|
|
background-color: #e5e5e5;
|
|
|
|
cursor: pointer;
|
2016-05-27 14:14:16 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-arrow-active {
|
2016-06-30 20:21:10 +00:00
|
|
|
border: #ccc solid 2px;
|
2016-05-27 14:14:16 +00:00
|
|
|
}
|
2016-04-19 12:45:09 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revision-slider {
|
2016-06-30 20:21:10 +00:00
|
|
|
position: relative;
|
|
|
|
margin: auto;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-pointer-container {
|
2016-06-30 20:21:10 +00:00
|
|
|
position: absolute;
|
|
|
|
clear: both;
|
|
|
|
height: 1px;
|
|
|
|
top: 57px;
|
|
|
|
margin: auto;
|
|
|
|
z-index: 10;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-lower-pointer {
|
2016-06-30 20:21:10 +00:00
|
|
|
top: 15px;
|
2016-05-17 12:29:08 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-pointer {
|
2016-06-30 20:21:10 +00:00
|
|
|
position: absolute !important; /* stylelint-disable-line declaration-no-important */
|
|
|
|
z-index: 11;
|
|
|
|
width: 18px;
|
|
|
|
height: 13px;
|
|
|
|
background-repeat: no-repeat;
|
2016-04-19 12:45:09 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-06-03 08:55:17 +00:00
|
|
|
.mw-pointer-cursor {
|
2016-06-30 20:21:10 +00:00
|
|
|
cursor: ew-resize;
|
2016-06-03 08:55:17 +00:00
|
|
|
}
|
2016-05-10 19:15:11 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revisions-older {
|
2016-06-30 20:21:10 +00:00
|
|
|
float: left;
|
2016-05-20 08:51:21 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
.mw-revisions-newer {
|
2016-06-30 20:21:10 +00:00
|
|
|
float: right;
|
2016-05-20 08:51:21 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:06:44 +00:00
|
|
|
#mw-revision-slider-darkness {
|
2016-06-30 20:21:10 +00:00
|
|
|
background-color: #fff;
|
|
|
|
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.5; /* 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;
|
2016-05-10 19:15:11 +00:00
|
|
|
}
|
2016-06-10 14:23:24 +00:00
|
|
|
|
|
|
|
.mw-help-dialog-image-landscape {
|
2016-06-30 20:21:10 +00:00
|
|
|
height: 160px;
|
|
|
|
width: 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2016-06-10 14:23:24 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-06-10 14:23:24 +00:00
|
|
|
.mw-help-dialog-image-portrait {
|
2016-06-30 20:21:10 +00:00
|
|
|
height: 180px;
|
|
|
|
width: 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2016-06-10 14:23:24 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-06-10 14:23:24 +00:00
|
|
|
.mw-image-column {
|
2016-06-30 20:21:10 +00:00
|
|
|
width: 50%;
|
|
|
|
float: left;
|
2016-06-10 14:23:24 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-06-10 14:23:24 +00:00
|
|
|
.mw-text-column {
|
2016-06-30 20:21:10 +00:00
|
|
|
width: 50%;
|
|
|
|
float: right;
|
2016-06-10 14:23:24 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-06-10 14:23:24 +00:00
|
|
|
.mw-help-dialog-text {
|
2016-06-30 20:21:10 +00:00
|
|
|
font-size: 15px;
|
|
|
|
font-size: 1rem;
|
2016-06-10 14:23:24 +00:00
|
|
|
}
|
2016-06-30 20:21:10 +00:00
|
|
|
|
2016-06-17 10:21:49 +00:00
|
|
|
.mw-show-help {
|
2016-06-30 20:21:10 +00:00
|
|
|
position: absolute;
|
|
|
|
right: -18px;
|
|
|
|
bottom: 7px;
|
|
|
|
color: #347bff;
|
|
|
|
border: 2px solid #347bff;
|
|
|
|
padding: 0;
|
|
|
|
background: #fff;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 15px;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
2016-06-17 10:21:49 +00:00
|
|
|
}
|