2014-10-13 16:26:49 -05:00
|
|
|
// styles that apply to the popup that appears when you show the edit history of a post
|
|
|
|
|
|
|
|
.modal.history-modal {
|
|
|
|
.modal-inner-container {
|
2019-05-15 12:26:25 -05:00
|
|
|
max-width: $large-width;
|
2014-10-13 16:26:49 -05:00
|
|
|
}
|
2018-06-01 10:59:29 -05:00
|
|
|
.modal-body {
|
|
|
|
height: 70vh;
|
|
|
|
}
|
2014-10-13 16:26:49 -05:00
|
|
|
#revision-controls {
|
2015-08-19 14:10:12 -05:00
|
|
|
.btn[disabled] {
|
|
|
|
cursor: not-allowed;
|
2018-06-08 04:49:31 -05:00
|
|
|
background-color: $primary-low;
|
2015-08-19 14:10:12 -05:00
|
|
|
}
|
|
|
|
.btn-danger[disabled] {
|
2017-06-11 21:20:14 -05:00
|
|
|
background-color: $danger-medium;
|
2014-10-13 16:26:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#display-modes {
|
|
|
|
text-align: right;
|
2017-01-26 20:49:17 -06:00
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
2014-10-13 16:26:49 -05:00
|
|
|
}
|
2018-02-23 20:41:40 -06:00
|
|
|
|
2014-10-13 16:26:49 -05:00
|
|
|
#revisions {
|
|
|
|
word-wrap: break-word;
|
2014-10-27 16:06:43 -05:00
|
|
|
table {
|
2014-10-13 16:26:49 -05:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
max-width: 670px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.inline-diff {
|
|
|
|
width: 670px;
|
|
|
|
}
|
|
|
|
.markdown {
|
|
|
|
font-family: monospace;
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-down-1;
|
2014-10-13 16:26:49 -05: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;
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
.revision-content,
|
|
|
|
.markdown {
|
2014-10-13 16:26:49 -05:00
|
|
|
img {
|
2018-01-29 14:15:50 -06:00
|
|
|
max-width: 100%;
|
|
|
|
box-sizing: border-box;
|
2014-10-13 16:26:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
height: 42px;
|
|
|
|
}
|
|
|
|
}
|