2013-12-11 20:41:34 -06:00
|
|
|
// styles that apply to the popup that appears when you show the edit history of a post
|
2013-09-05 14:37:07 -05:00
|
|
|
|
|
|
|
.modal.history-modal {
|
2014-03-18 18:36:02 -05:00
|
|
|
#revision-numbers {
|
|
|
|
display: inline-block;
|
2014-10-28 09:56:24 -05:00
|
|
|
min-width: 96px;
|
2014-03-18 18:36:02 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|
2017-01-26 20:49:17 -06:00
|
|
|
|
|
|
|
#revision {
|
|
|
|
overflow: auto;
|
2019-07-15 12:44:44 -05:00
|
|
|
border-bottom: 3px solid $primary-low;
|
2017-01-26 20:49:17 -06:00
|
|
|
}
|
|
|
|
|
2019-05-15 12:26:25 -05:00
|
|
|
table.markdown > tbody > tr > td,
|
2018-01-29 14:15:50 -06:00
|
|
|
.revision-content {
|
|
|
|
width: 47.5%;
|
|
|
|
float: left;
|
2019-03-28 23:38:44 -05:00
|
|
|
|
2018-01-29 14:15:50 -06:00
|
|
|
&:nth-of-type(2) {
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 20:41:40 -06:00
|
|
|
#revision-details {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2014-10-27 16:06:43 -05:00
|
|
|
#revisions .row:first-of-type {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
ins,
|
|
|
|
.diff-ins {
|
|
|
|
code,
|
|
|
|
img {
|
2014-05-06 00:50:51 -05:00
|
|
|
border: 2px solid $success;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
|
|
|
img {
|
2018-06-08 04:49:31 -05:00
|
|
|
opacity: 0.75;
|
2013-12-11 20:41:34 -06:00
|
|
|
filter: alpha(opacity=75);
|
|
|
|
}
|
|
|
|
a {
|
2014-05-06 00:50:51 -05:00
|
|
|
color: $success;
|
2013-12-11 20:41:34 -06:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
img.diff-ins,
|
|
|
|
code.diff-ins {
|
2014-05-06 00:50:51 -05:00
|
|
|
border: 2px solid $success;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
|
|
|
img.diff-ins {
|
2018-06-08 04:49:31 -05:00
|
|
|
opacity: 0.75;
|
2013-12-11 20:41:34 -06:00
|
|
|
filter: alpha(opacity=75);
|
|
|
|
}
|
|
|
|
.diff-ins {
|
2018-06-29 01:42:26 -05:00
|
|
|
color: $primary;
|
2017-10-10 15:07:46 -05:00
|
|
|
background: $success-low;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
ins {
|
2018-06-29 01:42:26 -05:00
|
|
|
color: $primary;
|
2017-10-10 15:07:46 -05:00
|
|
|
background: $success-low;
|
2018-06-29 01:42:26 -05:00
|
|
|
text-decoration: none;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
del,
|
|
|
|
.diff-del {
|
|
|
|
code,
|
|
|
|
img {
|
2014-05-06 00:50:51 -05:00
|
|
|
border: 2px solid $danger;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
|
|
|
img {
|
2018-06-08 04:49:31 -05:00
|
|
|
opacity: 0.5;
|
2013-12-11 20:41:34 -06:00
|
|
|
filter: alpha(opacity=50);
|
|
|
|
}
|
|
|
|
a {
|
2014-05-06 00:50:51 -05:00
|
|
|
color: $danger;
|
2013-12-11 20:41:34 -06:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
img.diff-del,
|
|
|
|
code.diff-del {
|
2014-05-06 00:50:51 -05:00
|
|
|
border: 2px solid $danger;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
|
|
|
img.diff-del {
|
2018-06-08 04:49:31 -05:00
|
|
|
opacity: 0.5;
|
2013-12-11 20:41:34 -06:00
|
|
|
filter: alpha(opacity=50);
|
|
|
|
}
|
|
|
|
.diff-del {
|
2018-06-29 01:42:26 -05:00
|
|
|
color: $primary;
|
2017-10-10 15:07:46 -05:00
|
|
|
background: $danger-low;
|
2018-06-29 01:42:26 -05:00
|
|
|
text-decoration: none;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
del {
|
2018-06-29 01:42:26 -05:00
|
|
|
color: $primary;
|
2017-10-10 15:07:46 -05:00
|
|
|
background: $danger-low;
|
2018-06-29 01:42:26 -05:00
|
|
|
text-decoration: none;
|
2013-12-11 20:41:34 -06:00
|
|
|
}
|
|
|
|
span.date {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
span.edit-reason {
|
2018-08-05 21:53:46 -05:00
|
|
|
background-color: $highlight-medium;
|
2013-12-11 20:41:34 -06:00
|
|
|
padding: 3px 5px 5px 5px;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2017-11-23 10:14:51 -06:00
|
|
|
.d-icon-ban {
|
2014-05-13 07:53:11 -05:00
|
|
|
color: #f00;
|
|
|
|
}
|
2014-10-27 16:06:43 -05:00
|
|
|
.hidden-revision-either {
|
2018-06-08 04:49:31 -05:00
|
|
|
opacity: 0.5;
|
2014-10-27 16:06:43 -05:00
|
|
|
}
|
|
|
|
.hidden-revision-previous .row {
|
2018-06-08 04:49:31 -05:00
|
|
|
div:nth-of-type(1),
|
|
|
|
td:nth-of-type(1) {
|
|
|
|
opacity: 0.5;
|
2014-10-27 16:06:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.hidden-revision-current .row {
|
2018-06-08 04:49:31 -05:00
|
|
|
div:nth-of-type(2),
|
|
|
|
td:nth-of-type(2) {
|
|
|
|
opacity: 0.5;
|
2014-10-27 16:06:43 -05:00
|
|
|
}
|
2014-10-16 09:32:02 -05:00
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|