discourse/app/assets/stylesheets/common/base/history.scss

90 lines
1.7 KiB
SCSS
Raw Normal View History

2013-12-11 21:41:34 -05:00
// styles that apply to the popup that appears when you show the edit history of a post
2013-09-05 15:37:07 -04:00
.modal.history-modal {
#revision-numbers {
display: inline-block;
min-width: 96px;
text-align: center;
}
#revisions .row:first-of-type {
margin-top: 10px;
}
2013-12-11 21:41:34 -05:00
ins, .diff-ins {
code, img {
border: 2px solid $success;
2013-12-11 21:41:34 -05:00
}
img {
opacity: .75;
filter: alpha(opacity=75);
}
a {
color: $success;
2013-12-11 21:41:34 -05:00
text-decoration: none;
}
}
img.diff-ins, code.diff-ins {
border: 2px solid $success;
2013-12-11 21:41:34 -05:00
}
img.diff-ins {
opacity: .75;
filter: alpha(opacity=75);
}
.diff-ins {
2014-05-06 23:53:04 -04:00
background: scale-color($success, $lightness: 90%);
2013-12-11 21:41:34 -05:00
}
2013-09-05 15:37:07 -04:00
ins {
color: $success;
2014-05-06 23:53:04 -04:00
background: scale-color($success, $lightness: 90%);
2013-12-11 21:41:34 -05:00
}
del, .diff-del {
code, img {
border: 2px solid $danger;
2013-12-11 21:41:34 -05:00
}
img {
opacity: .5;
filter: alpha(opacity=50);
}
a {
color: $danger;
2013-12-11 21:41:34 -05:00
text-decoration: none;
}
}
img.diff-del, code.diff-del {
border: 2px solid $danger;
2013-12-11 21:41:34 -05:00
}
img.diff-del {
opacity: .5;
filter: alpha(opacity=50);
}
.diff-del {
2014-05-06 23:53:04 -04:00
background: scale-color($danger, $lightness: 60%);
2013-09-05 15:37:07 -04:00
}
del {
color: $danger;
2014-05-06 23:53:04 -04:00
background: scale-color($danger, $lightness: 60%);
2013-12-11 21:41:34 -05:00
}
span.date {
font-weight: bold;
}
span.edit-reason {
background-color: lighten($highlight, 23%);
2013-12-11 21:41:34 -05:00
padding: 3px 5px 5px 5px;
2013-09-05 15:37:07 -04:00
}
2014-05-13 08:53:11 -04:00
.fa-ban {
color: #f00;
}
.hidden-revision-either {
opacity: .5;
}
.hidden-revision-previous .row {
div:nth-of-type(1), td:nth-of-type(1) {
opacity: .5;
}
}
.hidden-revision-current .row {
div:nth-of-type(2), td:nth-of-type(2) {
opacity: .5;
}
2014-10-16 10:32:02 -04:00
}
2013-09-05 15:37:07 -04:00
}