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

230 lines
3.4 KiB
SCSS

// base styles for every modal popup used in Discourse
.modal-middle-container {
display:table-cell;
vertical-align: middle;
}
// Hardcode to be the same as before for now. I would recommend not using bootbox, or finding a way so the html structure can be the same
.bootbox.modal {
top: 50%;
left: 50%;
width: 610px;
margin: -250px 0 0 -305px;
.cancel {
margin-left: 1em;
}
}
.modal.in {
-webkit-animation: fade .25s;
animation: fade .25s;
}
.modal-body {
overflow-y: auto;
max-height: 400px;
padding: 15px;
}
.modal-footer .btn.right {
float: right;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-close {
display: inline-block;
float: right;
margin: 7px;
}
.modal-header {
h3 {
display: inline-block;;
font-size: $font-up-3;
padding: 10px 15px 7px;
}
}
.close {
font-size: $font-up-3;
text-decoration: none;
color: dark-light-choose($primary-high, $secondary-low);
cursor: pointer;
&:hover {
color: $primary;
}
}
.modal {
.category-chooser {
width: 50%;
}
.category-combobox {
width: 430px;
.select2-drop {
left: -9000px;
width: 428px;
}
.select2-search input {
width: 378px;
}
}
}
.flag-modal {
max-height: 450px;
.flag-action-type-details {
line-height: $line-height-large;
}
}
.custom-message-length {
color: dark-light-choose($primary-low-mid, $secondary-high);
font-size: $font-down-1;
}
.flag-message {
width: 95%;
margin: 0;
}
.edit-category-modal {
.modal-body {
position: relative;
height: 420px;
max-height: 420px;
padding-bottom: 0;
}
.secure-category-options {
margin: 10px 0 0 16px;
.badge-list {
margin: 10px 0;
li {
margin: 0 4px 8px 0;
a {
color: dark-light-choose($primary-medium, $secondary-medium);
cursor: pointer;
}
a:hover {
color: dark-light-choose($primary-medium, $secondary-medium);
}
}
}
}
.disable_info_wrap {
margin-top: -70px;
padding-top: 70px;
@media all and (min-width: 550px) {
padding-left: 170px;
}
.cannot_delete_reason {
top: 4px;
right: 4px;
max-width: 380px;
min-width: 300px;
}
}
}
.topic-bulk-actions-modal {
p {
margin-top: 0;
}
&.full .modal-body {
height: 400px;
max-height: 400px;
}
.bulk-buttons {
display: flex;
flex-wrap: wrap;
.btn {
flex: 1 1 0;
margin-bottom: 1em;
margin-right: 1em;
white-space: nowrap;
max-width: 23%;
}
}
}
.tabbed-modal {
.modal-body {
position: relative;
height: 350px;
}
}
.modal-tab {
position: absolute;
width: 95%;
}
.split-modal {
.modal-body {
position: relative;
height: 350px;
}
#move-selected {
p {
margin-top: 0;
}
input[type=radio] {
margin-right: 10px;
}
button {
margin-top: 10px;
display: block;
width: 300px;
}
form {
margin-top: 20px;
#split-topic-name, #choose-topic-title {
width: 520px;
}
}
}
}
.upload-options {
margin-left: 20px;
margin-top: 20px;
}
.uploaded-avatar {
margin-top: 20px;
}
.uploaded-image-preview {
width: 400px;
max-height: 150px;
margin-bottom: 10px;
}
.change-timestamp {
min-height: 300px;
.date-picker {
width: 10em;
}
input[type=time] {
width: 6em;
}
form {
margin: 0;
}
}