Limiting history modal height and width
This commit is contained in:
parent
725859ba43
commit
41999b9949
|
@ -130,9 +130,10 @@
|
|||
height: 100%;
|
||||
z-index: z("modal","content");
|
||||
overflow: auto;
|
||||
|
||||
.modal-body {
|
||||
max-height: none !important;
|
||||
&:not(.history-modal) {
|
||||
.modal-body {
|
||||
max-height: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,9 +3,11 @@
|
|||
.modal.history-modal {
|
||||
|
||||
.modal-inner-container {
|
||||
min-height: 500px;
|
||||
max-width: 960px;
|
||||
}
|
||||
.modal-body {
|
||||
height: 70vh;
|
||||
}
|
||||
#revision-controls {
|
||||
.btn[disabled] {
|
||||
cursor: not-allowed;
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
button {
|
||||
float: none;
|
||||
}
|
||||
.modal-body {
|
||||
height: 62vh;
|
||||
}
|
||||
.modal-inner-container {
|
||||
min-height: 400px;
|
||||
}
|
||||
#revisions {
|
||||
max-width: 90vw;
|
||||
}
|
||||
#display-modes {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue