2014-10-14 05:26:49 +08: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-29 10:49:01 +08:00
|
|
|
max-width: var(--d-max-width);
|
2014-10-14 05:26:49 +08:00
|
|
|
}
|
2018-06-01 23:59:29 +08:00
|
|
|
.modal-body {
|
|
|
|
height: 70vh;
|
|
|
|
}
|
2014-10-14 05:26:49 +08:00
|
|
|
#revision-controls {
|
2015-08-20 03:10:12 +08:00
|
|
|
.btn[disabled] {
|
|
|
|
cursor: not-allowed;
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--primary-low);
|
2015-08-20 03:10:12 +08:00
|
|
|
}
|
|
|
|
.btn-danger[disabled] {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--danger-medium);
|
2014-10-14 05:26:49 +08:00
|
|
|
}
|
|
|
|
}
|
2019-07-16 01:44:44 +08:00
|
|
|
|
|
|
|
#revision {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-07-31 07:52:15 +08:00
|
|
|
padding-bottom: 0.5em;
|
2014-10-14 05:26:49 +08:00
|
|
|
}
|
2018-02-24 10:41:40 +08:00
|
|
|
|
2014-10-14 05:26:49 +08:00
|
|
|
#revisions {
|
|
|
|
word-wrap: break-word;
|
2014-10-28 05:06:43 +08:00
|
|
|
table {
|
2014-10-14 05:26:49 +08:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2021-07-31 07:52:15 +08:00
|
|
|
#display-modes {
|
|
|
|
.nav {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-14 05:26:49 +08:00
|
|
|
img {
|
|
|
|
max-width: 670px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.inline-diff {
|
|
|
|
width: 670px;
|
|
|
|
}
|
|
|
|
.markdown {
|
|
|
|
font-family: monospace;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-down-1;
|
2014-10-14 05:26:49 +08: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 17:49:31 +08:00
|
|
|
.revision-content,
|
|
|
|
.markdown {
|
2014-10-14 05:26:49 +08:00
|
|
|
img {
|
2018-01-30 04:15:50 +08:00
|
|
|
max-width: 100%;
|
|
|
|
box-sizing: border-box;
|
2014-10-14 05:26:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
height: 42px;
|
|
|
|
}
|
2019-07-16 01:44:44 +08:00
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2014-10-14 05:26:49 +08:00
|
|
|
}
|