discourse/app/assets/stylesheets/desktop/history.scss
Régis Hanol e7f251c105 LOTS of changes to properly handle post/topic revisions
FIX: history revision can now properly be hidden
FIX: PostRevision serializer is now entirely dynamic to properly handle
hidden revisions
FIX: default history modal to "side by side" view on mobile
FIX: properly hiden which revision has been hidden
UX: inline category/user/wiki/post_type changes with the revision
details
FEATURE: new '/posts/:post_id/revisions/latest' endpoint to retrieve
latest revision
UX: do not show the hide/show revision button on mobile (no room for
them)
UX: remove CSS transitions on the buttons in the history modal
FIX: PostRevisor now handles all the changes that might create new
revisions
FIX: PostRevision.ensure_consistency! was wrong due to off by 1
mistake...
refactored topic's callbacks for better readability
extracted 'PostRevisionGuardian'
2014-10-27 22:06:43 +01:00

63 lines
1.1 KiB
SCSS

// styles that apply to the popup that appears when you show the edit history of a post
.modal.history-modal {
.btn {
// remove transitions on the buttons in the history modal
transition: none;
}
.modal-inner-container {
min-width: 960px;
min-height: 500px;
}
#revision-controls {
float: left;
.btn[disabled]:hover {
color: $primary;
}
}
#display-modes {
text-align: right;
}
#revision-details {
background-color: scale-color-diff();
padding: 5px;
margin-top: 10px;
line-height: 2em;
height: 30px;
}
#revisions {
word-wrap: break-word;
table {
margin-top: 10px;
}
}
img {
max-width: 670px;
height: auto;
}
.inline-diff {
width: 670px;
}
.markdown {
font-family: monospace;
font-size: 12px;
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;
}
}
.span8, .markdown {
img {
max-width: 400px;
}
}
.modal-header {
height: 42px;
}
}