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 {
|
|
|
|
.modal-inner-container {
|
2018-02-09 15:45:34 -05:00
|
|
|
max-width: 960px;
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
2018-06-01 11:59:29 -04:00
|
|
|
.modal-body {
|
|
|
|
height: 70vh;
|
|
|
|
}
|
2014-10-13 17:26:49 -04:00
|
|
|
#revision-controls {
|
2015-08-19 15:10:12 -04:00
|
|
|
.btn[disabled] {
|
|
|
|
cursor: not-allowed;
|
2018-06-08 05:49:31 -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;
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
2018-02-23 21:41:40 -05:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
.revision-content,
|
|
|
|
.markdown {
|
2014-10-13 17:26:49 -04:00
|
|
|
img {
|
2018-01-29 15:15:50 -05:00
|
|
|
max-width: 100%;
|
|
|
|
box-sizing: border-box;
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
height: 42px;
|
|
|
|
}
|
|
|
|
}
|