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