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

189 lines
2.9 KiB
SCSS
Raw Normal View History

2013-02-05 14:16:51 -05:00
// 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;
}
2013-02-05 14:16:51 -05:00
}
.modal.in {
-webkit-animation: fade 0.25s;
animation: fade 0.25s;
2013-02-05 14:16:51 -05:00
}
2013-02-05 14:16:51 -05:00
.modal-body {
padding: 15px;
}
.modal-footer .btn.right {
float: right;
}
2013-02-05 14:16:51 -05:00
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
2014-11-12 03:39:32 -05:00
2013-02-05 14:16:51 -05:00
.modal-header {
h3 {
2018-01-12 17:27:38 -05:00
font-size: $font-up-3;
2013-02-25 11:42:20 -05:00
}
2014-06-18 14:04:10 -04:00
}
2019-01-10 21:50:00 -05:00
.close {
2018-01-12 17:27:38 -05:00
font-size: $font-up-3;
2014-06-18 14:04:10 -04:00
text-decoration: none;
2019-01-10 21:50:00 -05:00
color: $primary-high;
&:visited {
color: $primary-high;
}
2014-06-18 14:04:10 -04:00
cursor: pointer;
&:hover {
color: $primary;
2013-02-05 14:16:51 -05:00
}
}
.modal {
2017-10-19 15:51:08 -04:00
.category-chooser {
width: 50%;
}
.category-combobox {
width: 430px;
}
2013-02-05 14:16:51 -05:00
}
.edit-category-modal {
.modal-body {
position: relative;
2013-12-03 17:24:25 -05:00
height: 420px;
max-height: 420px;
padding-bottom: 0;
}
2017-03-10 11:57:18 -05:00
2017-03-08 12:59:19 -05:00
.disable_info_wrap {
.cannot_delete_reason {
top: -74px;
2017-03-08 12:59:19 -05:00
right: 4px;
max-width: 380px;
min-width: 300px;
}
}
}
2014-01-29 13:35:24 -05:00
.topic-bulk-actions-modal {
p {
margin-top: 0;
}
2014-01-30 12:44:28 -05:00
&.full .modal-body {
height: 400px;
max-height: 400px;
}
2017-05-11 14:47:08 -04:00
.bulk-buttons {
display: flex;
flex-wrap: wrap;
margin-right: -1%;
2017-05-11 14:47:08 -04:00
.btn {
flex: 1 0 30%;
2017-05-11 14:47:08 -04:00
margin-bottom: 1em;
margin-right: 1%;
white-space: nowrap;
overflow: hidden;
max-width: 33%;
@media screen and (max-width: 767px) {
flex: 1 0 48%;
max-width: 48%;
}
2018-07-12 16:38:51 -04:00
@include breakpoint(mobile) {
flex: 1 1 auto;
min-width: 49%;
max-width: unset;
}
2017-05-11 14:47:08 -04:00
}
}
}
.move-to-modal {
.modal-body {
position: relative;
height: 350px;
}
#move-selected {
// prevents content from moving when user selects differnt move options 525px
// is the same width we set on category edit modal
width: 525px;
p {
margin-top: 0;
}
.radios {
margin-bottom: 10px;
display: flex;
flex-direction: row;
.radio-label {
display: inline-block;
padding-right: 15px;
}
}
button {
margin-top: 10px;
display: block;
width: 300px;
}
.category-chooser {
margin-bottom: 9px;
}
form {
width: 95%;
margin-top: 20px;
#split-topic-name,
#choose-topic-title,
#choose-message-title {
width: 100%;
}
.participant-selector {
width: 100%;
}
div.ac-wrap {
width: 100%;
margin-bottom: 9px;
}
}
}
}
.upload-options {
margin-left: 20px;
margin-top: 20px;
}
.uploaded-avatar {
margin-top: 20px;
}
.uploaded-image-preview {
width: 400px;
max-height: 150px;
margin-bottom: 10px;
}