discourse/app/assets/stylesheets/desktop/history.scss

54 lines
851 B
SCSS

// styles that apply to the popup that appears when you show the edit history of a post
.modal.history-modal {
.modal-inner-container {
max-width: var(--d-max-width);
}
.modal-body {
height: 70vh;
}
#revisions {
word-wrap: break-word;
table {
margin-top: 10px;
}
}
#display-modes {
.nav {
margin: 0;
padding: 0;
border: none;
}
}
img {
max-width: 670px;
height: auto;
}
.inline-diff {
width: 670px;
}
.markdown {
font-family: monospace;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
td {
word-wrap: break-word;
white-space: pre-wrap;
}
}
.revision-content,
.markdown {
img {
max-width: 100%;
box-sizing: border-box;
}
}
.modal-footer {
justify-content: space-between;
}
}