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 {
|
2014-10-30 00:43:08 +08:00
|
|
|
display:table-cell;
|
|
|
|
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
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
z-index: 1050;
|
|
|
|
overflow: auto;
|
|
|
|
width: 610px;
|
2013-07-17 02:32:35 +08:00
|
|
|
height: auto;
|
2013-07-17 01:38:01 +08:00
|
|
|
margin: -250px 0 0 -305px;
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2015-06-15 10:59:49 +08:00
|
|
|
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2014-08-06 21:31:13 +08:00
|
|
|
box-shadow: 0 3px 7px rgba(0,0,0, .8);
|
2013-02-06 03:16:51 +08:00
|
|
|
background-clip: padding-box;
|
2014-03-21 04:33:03 +08:00
|
|
|
|
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 {
|
2014-12-25 18:29:39 +08:00
|
|
|
-webkit-animation: fade .25s;
|
|
|
|
animation: fade .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 {
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 400px;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
2014-04-21 03:16:06 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.modal-footer .btn + .btn {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
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
|
|
|
|
2017-03-31 16:47:49 +08:00
|
|
|
.modal-close {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
margin: 7px;
|
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.modal-header {
|
|
|
|
h3 {
|
2017-03-31 16:47:49 +08:00
|
|
|
display: inline-block;;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.429em;
|
2013-02-06 03:16:51 +08:00
|
|
|
padding: 10px 15px 7px;
|
2013-02-26 00:42:20 +08:00
|
|
|
}
|
2014-06-19 02:04:10 +08:00
|
|
|
}
|
|
|
|
.close {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.429em;
|
2014-06-19 02:04:10 +08:00
|
|
|
text-decoration: none;
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 35%), scale-color($secondary, $lightness: 65%));
|
2014-06-19 02:04:10 +08:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
color: $primary;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
2013-10-25 05:03:28 +08:00
|
|
|
.category-combobox {
|
|
|
|
width: 430px;
|
|
|
|
|
2014-05-11 12:50:03 +08:00
|
|
|
.select2-drop {
|
2013-10-25 05:03:28 +08:00
|
|
|
left: -9000px;
|
|
|
|
width: 428px;
|
|
|
|
}
|
2014-05-11 12:50:03 +08:00
|
|
|
.select2-search input {
|
2013-10-25 05:03:28 +08:00
|
|
|
width: 378px;
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
2013-04-12 15:55:45 +08:00
|
|
|
.flag-modal {
|
|
|
|
max-height: 450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-message-length {
|
2014-11-12 17:23:49 +08:00
|
|
|
margin: -10px 0 10px 20px;
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 70%), scale-color($secondary, $lightness: 30%));
|
2014-11-12 17:23:49 +08:00
|
|
|
font-size: 85%;
|
2013-04-12 15:55:45 +08:00
|
|
|
}
|
2013-04-24 05:15:09 +08:00
|
|
|
|
|
|
|
.flag-message {
|
|
|
|
margin-left: 20px;
|
|
|
|
width: 95% !important;
|
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
|
|
|
}
|
2013-05-18 04:09:52 +08:00
|
|
|
.secure-category-options {
|
|
|
|
margin: 10px 0 0 16px;
|
|
|
|
.badge-list {
|
|
|
|
margin: 10px 0;
|
|
|
|
li {
|
|
|
|
margin: 0 4px 8px 0;
|
|
|
|
a {
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
2013-05-18 04:09:52 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
a:hover {
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%));
|
2013-05-18 04:09:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 00:57:18 +08:00
|
|
|
|
2017-03-09 01:59:19 +08:00
|
|
|
.disable_info_wrap {
|
|
|
|
margin-top: -70px;
|
|
|
|
padding-top: 70px;
|
2017-03-11 00:57:18 +08:00
|
|
|
@media all and (min-width: 550px) {
|
|
|
|
padding-left: 170px;
|
|
|
|
}
|
2017-03-09 01:59:19 +08:00
|
|
|
|
|
|
|
.cannot_delete_reason {
|
|
|
|
top: 4px;
|
|
|
|
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;
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
width: 22%;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 02:35:24 +08:00
|
|
|
}
|
2013-08-21 22:49:35 +08:00
|
|
|
.tabbed-modal {
|
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
|
|
|
height: 350px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-16 03:19:41 +08:00
|
|
|
.modal-tab {
|
|
|
|
position: absolute;
|
2015-07-03 04:18:59 +08:00
|
|
|
width: 95%;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 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;
|
|
|
|
}
|
2014-08-08 18:10:32 +08:00
|
|
|
|
|
|
|
.delete-flag-modal, .agree-flag-modal {
|
|
|
|
.modal-inner-container {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
}
|
2016-04-22 02:56:12 +08:00
|
|
|
|
|
|
|
.change-timestamp {
|
|
|
|
min-height: 300px;
|
|
|
|
|
|
|
|
.date-picker {
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=time] {
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|