2014-10-13 17:26:49 -04:00
|
|
|
// styles that apply to the popup that appears when you show the edit history of a post
|
|
|
|
|
|
|
|
.modal.history-modal {
|
2017-01-26 03:02:19 -05:00
|
|
|
|
2014-10-13 17:26:49 -04:00
|
|
|
.modal-inner-container {
|
|
|
|
min-width: 960px;
|
|
|
|
min-height: 500px;
|
|
|
|
}
|
|
|
|
#revision-controls {
|
|
|
|
float: left;
|
2017-01-26 21:49:17 -05:00
|
|
|
padding-right: 5px;
|
|
|
|
|
2015-08-19 15:10:12 -04:00
|
|
|
.btn[disabled] {
|
|
|
|
cursor: not-allowed;
|
2017-06-11 22:20:14 -04:00
|
|
|
background-color: $primary-low;
|
2015-08-19 15:10:12 -04:00
|
|
|
}
|
|
|
|
.btn-danger[disabled] {
|
2017-06-11 22:20:14 -04:00
|
|
|
background-color: $danger-medium;
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#display-modes {
|
|
|
|
text-align: right;
|
2017-01-26 21:49:17 -05:00
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
|
2017-01-26 03:02:19 -05:00
|
|
|
.btn {
|
|
|
|
background-color:inherit;
|
2017-06-11 22:20:14 -04:00
|
|
|
color: blend-primary-secondary(50%);
|
2017-01-26 03:02:19 -05:00
|
|
|
}
|
|
|
|
.btn-primary {
|
|
|
|
color: $primary;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
|
|
|
#revision-details {
|
|
|
|
padding: 5px;
|
|
|
|
margin-top: 10px;
|
2017-06-11 22:20:14 -04:00
|
|
|
border-bottom: 3px solid $primary-low;
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
|
|
|
#revisions {
|
|
|
|
word-wrap: break-word;
|
2014-10-27 17:06:43 -04:00
|
|
|
table {
|
2014-10-13 17:26:49 -04:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
max-width: 670px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.inline-diff {
|
|
|
|
width: 670px;
|
|
|
|
}
|
|
|
|
.markdown {
|
|
|
|
font-family: monospace;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-down-1;
|
2014-10-13 17:26:49 -04:00
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
td {
|
|
|
|
width: 50%;
|
|
|
|
vertical-align: top;
|
|
|
|
max-width: 440px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.span8, .markdown {
|
|
|
|
img {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
height: 42px;
|
|
|
|
}
|
|
|
|
}
|