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-09-06 03:54:16 +08:00
|
|
|
.modal-footer .btn.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-01-11 10:50:00 +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;
|
2019-01-11 10:50:00 +08:00
|
|
|
&:visited {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-high);
|
2019-01-11 10:50:00 +08:00
|
|
|
}
|
2014-06-19 02:04:10 +08:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--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
|
|
|
}
|
2019-10-09 04:19:07 +08:00
|
|
|
|
|
|
|
.modal-body.insert-link {
|
|
|
|
input {
|
|
|
|
min-width: 450px;
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
2020-01-16 05:20:12 +08:00
|
|
|
.choose-topic-modal {
|
2013-10-30 03:30:06 +08:00
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
|
|
|
height: 350px;
|
|
|
|
}
|
|
|
|
|
2020-01-16 05:20:12 +08:00
|
|
|
#choosing-topic {
|
2019-05-16 01:26:25 +08:00
|
|
|
// prevents content from moving when user selects different move options 525px
|
2019-01-23 16:18:38 +08:00
|
|
|
// is the same width we set on category edit modal
|
|
|
|
width: 525px;
|
2018-12-31 19:47:22 +08:00
|
|
|
|
2013-10-30 03:30:06 +08:00
|
|
|
p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-31 19:47:22 +08:00
|
|
|
.radios {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.radio-label {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
2013-10-30 03:30:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-top: 10px;
|
|
|
|
display: block;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
2018-09-21 04:12:08 +08:00
|
|
|
width: 95%;
|
2013-10-30 03:30:06 +08:00
|
|
|
margin-top: 20px;
|
2018-12-31 19:47:22 +08:00
|
|
|
|
|
|
|
.participant-selector {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ac-wrap {
|
2018-09-21 04:12:08 +08:00
|
|
|
width: 100%;
|
2018-12-31 19:47:22 +08:00
|
|
|
margin-bottom: 9px;
|
2013-10-30 03:30:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-11 20:49:53 +08:00
|
|
|
|
|
|
|
.change-post-notice-modal {
|
|
|
|
.modal-body {
|
|
|
|
min-width: 450px;
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 22:15:17 +08:00
|
|
|
|
|
|
|
.json-schema-editor-modal {
|
|
|
|
#json-editor-holder {
|
|
|
|
min-width: 500px;
|
|
|
|
}
|
|
|
|
}
|
2021-03-03 17:45:29 +08:00
|
|
|
|
|
|
|
.create-invite-modal,
|
2021-04-24 00:18:23 +08:00
|
|
|
.create-invite-bulk-modal,
|
|
|
|
.share-topic-modal {
|
2021-03-03 17:45:29 +08:00
|
|
|
.modal-inner-container {
|
2021-04-15 19:46:49 +08:00
|
|
|
width: 600px;
|
2021-03-03 17:45:29 +08:00
|
|
|
}
|
|
|
|
}
|