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

63 lines
1.1 KiB
SCSS
Raw Normal View History

// 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;
}
.modal-body {
height: 70vh;
}
#revision-controls {
2015-08-19 15:10:12 -04:00
.btn[disabled] {
cursor: not-allowed;
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;
}
}
#display-modes {
text-align: right;
display: inline-block;
float: right;
}
2018-02-23 21:41:40 -05:00
#revisions {
word-wrap: break-word;
table {
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;
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;
}
}
.revision-content,
.markdown {
img {
max-width: 100%;
box-sizing: border-box;
}
}
.modal-header {
height: 42px;
}
}