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 {
|
2022-06-28 22:49:01 -04:00
|
|
|
max-width: var(--d-max-width);
|
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;
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--primary-low);
|
2015-08-19 15:10:12 -04:00
|
|
|
}
|
|
|
|
.btn-danger[disabled] {
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--danger-medium);
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|
|
|
|
}
|
2019-07-15 13:44:44 -04:00
|
|
|
|
|
|
|
#revision {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-07-30 19:52:15 -04:00
|
|
|
padding-bottom: 0.5em;
|
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;
|
|
|
|
}
|
|
|
|
}
|
2021-07-30 19:52:15 -04:00
|
|
|
#display-modes {
|
|
|
|
.nav {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-13 17:26:49 -04:00
|
|
|
img {
|
|
|
|
max-width: 670px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.inline-diff {
|
|
|
|
width: 670px;
|
|
|
|
}
|
|
|
|
.markdown {
|
|
|
|
font-family: monospace;
|
2022-10-12 09:31:59 -04:00
|
|
|
font-size: var(--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;
|
|
|
|
}
|
2019-07-15 13:44:44 -04:00
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2014-10-13 17:26:49 -04:00
|
|
|
}
|