mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
27 lines
531 B
SCSS
27 lines
531 B
SCSS
|
// styles that apply to the popup that appears when you show the edit history
|
||
|
// of a post
|
||
|
|
||
|
@import "foundation/variables";
|
||
|
@import "foundation/mixins";
|
||
|
|
||
|
.modal.history-modal {
|
||
|
width: 960px;
|
||
|
margin-left: -460px;
|
||
|
min-height: 500px;
|
||
|
.modal-header {
|
||
|
height: 42px;
|
||
|
}
|
||
|
.history-loading {
|
||
|
margin: 25px 0;
|
||
|
width: 120px;
|
||
|
font-size: 20px;
|
||
|
padding: 8px 0 30px 30px;
|
||
|
background: {
|
||
|
image: image-url("spinner_96.gif");
|
||
|
repeat: no-repeat;
|
||
|
size: 25px 25px;
|
||
|
position: 0 4px;
|
||
|
};
|
||
|
}
|
||
|
}
|