2013-02-05 13:16:51 -06:00
|
|
|
// base styles for every modal popup used in Discourse
|
|
|
|
|
2013-07-16 13:32:35 -05:00
|
|
|
.modal-middle-container {
|
2014-10-29 11:43:08 -05:00
|
|
|
display:table-cell;
|
|
|
|
vertical-align: middle;
|
2013-07-15 22:14:26 -05:00
|
|
|
}
|
2013-07-16 13:32:35 -05:00
|
|
|
|
|
|
|
// 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 {
|
2013-07-16 12:38:01 -05:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 610px;
|
|
|
|
margin: -250px 0 0 -305px;
|
2018-01-16 16:49:04 -06:00
|
|
|
.cancel {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2013-02-05 13:16:51 -06:00
|
|
|
}
|
2013-07-16 13:32:35 -05:00
|
|
|
|
2014-03-20 15:33:03 -05:00
|
|
|
.modal.in {
|
2014-12-25 04:29:39 -06:00
|
|
|
-webkit-animation: fade .25s;
|
|
|
|
animation: fade .25s;
|
2013-02-05 13:16:51 -06:00
|
|
|
}
|
2014-03-20 15:33:03 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
.modal-body {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
2014-04-20 14:16:06 -05:00
|
|
|
|
2013-09-05 14:54:16 -05:00
|
|
|
.modal-footer .btn.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
.modal-footer .btn-group .btn + .btn {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2014-11-12 02:39:32 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
.modal-header {
|
|
|
|
h3 {
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-3;
|
2013-02-25 10:42:20 -06:00
|
|
|
}
|
2014-06-18 13:04:10 -05:00
|
|
|
}
|
2018-02-23 12:14:32 -06:00
|
|
|
|
2014-06-18 13:04:10 -05:00
|
|
|
.close {
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-3;
|
2014-06-18 13:04:10 -05:00
|
|
|
text-decoration: none;
|
2017-10-10 15:07:46 -05:00
|
|
|
color: dark-light-choose($primary-high, $secondary-low);
|
2014-06-18 13:04:10 -05:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
color: $primary;
|
2013-02-05 13:16:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
2017-10-19 14:51:08 -05:00
|
|
|
.category-chooser {
|
|
|
|
width: 50%;
|
2017-08-30 10:04:17 -05:00
|
|
|
}
|
|
|
|
|
2013-10-24 16:03:28 -05:00
|
|
|
.category-combobox {
|
|
|
|
width: 430px;
|
|
|
|
}
|
2013-02-05 13:16:51 -06:00
|
|
|
}
|
|
|
|
|
2013-05-15 14:19:41 -05:00
|
|
|
.edit-category-modal {
|
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
2013-12-03 16:24:25 -06:00
|
|
|
height: 420px;
|
|
|
|
max-height: 420px;
|
|
|
|
padding-bottom: 0;
|
2013-05-15 14:19:41 -05:00
|
|
|
}
|
2017-03-10 10:57:18 -06:00
|
|
|
|
2017-03-08 11:59:19 -06:00
|
|
|
.disable_info_wrap {
|
|
|
|
margin-top: -70px;
|
|
|
|
padding-top: 70px;
|
2017-03-10 10:57:18 -06:00
|
|
|
@media all and (min-width: 550px) {
|
|
|
|
padding-left: 170px;
|
|
|
|
}
|
2017-03-08 11:59:19 -06:00
|
|
|
|
|
|
|
.cannot_delete_reason {
|
|
|
|
top: 4px;
|
|
|
|
right: 4px;
|
|
|
|
max-width: 380px;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
2014-07-16 14:43:44 -05:00
|
|
|
}
|
2013-05-15 14:19:41 -05:00
|
|
|
}
|
|
|
|
|
2014-01-29 12:35:24 -06:00
|
|
|
.topic-bulk-actions-modal {
|
|
|
|
p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2014-01-30 11:44:28 -06:00
|
|
|
&.full .modal-body {
|
|
|
|
height: 400px;
|
|
|
|
max-height: 400px;
|
2014-01-29 14:48:52 -06:00
|
|
|
}
|
2017-05-11 13:47:08 -05:00
|
|
|
|
|
|
|
.bulk-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.btn {
|
2017-10-20 09:32:57 -05:00
|
|
|
flex: 1 1 0;
|
2017-05-11 13:47:08 -05:00
|
|
|
margin-bottom: 1em;
|
|
|
|
margin-right: 1em;
|
2017-10-20 09:32:57 -05:00
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 23%;
|
2017-05-11 13:47:08 -05:00
|
|
|
}
|
|
|
|
}
|
2013-05-15 14:19:41 -05:00
|
|
|
}
|
2013-06-18 02:17:01 -05:00
|
|
|
|
2013-10-29 14:30:06 -05:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-22 02:37:02 -05:00
|
|
|
|
|
|
|
.upload-options {
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.uploaded-avatar {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2014-06-27 14:35:25 -05:00
|
|
|
|
|
|
|
.uploaded-image-preview {
|
|
|
|
width: 400px;
|
|
|
|
max-height: 150px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|