2013-07-16 14:32:35 -04: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 13:38:01 -04:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 610px;
|
|
|
|
margin: -250px 0 0 -305px;
|
2018-01-16 17:49:04 -05:00
|
|
|
.cancel {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
2013-07-16 14:32:35 -04:00
|
|
|
|
2014-03-20 16:33:03 -04:00
|
|
|
.modal.in {
|
2018-06-08 05:49:31 -04:00
|
|
|
-webkit-animation: fade 0.25s;
|
|
|
|
animation: fade 0.25s;
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
2014-03-20 16:33:03 -04:00
|
|
|
|
2013-09-05 15:54:16 -04:00
|
|
|
.modal-footer .btn.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2018-02-23 13:14:32 -05: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
|
|
|
&:visited {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-high);
|
2019-01-10 21:50:00 -05:00
|
|
|
}
|
2014-06-18 14:04:10 -04:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary);
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
2017-10-19 15:51:08 -04:00
|
|
|
.category-chooser {
|
|
|
|
width: 50%;
|
2017-08-30 11:04:17 -04:00
|
|
|
}
|
2019-10-08 16:19:07 -04:00
|
|
|
|
|
|
|
.modal-body.insert-link {
|
|
|
|
input {
|
|
|
|
min-width: 450px;
|
|
|
|
}
|
|
|
|
}
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-15 16:20:12 -05:00
|
|
|
.choose-topic-modal {
|
2013-10-29 15:30:06 -04:00
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
|
|
|
height: 350px;
|
|
|
|
}
|
|
|
|
|
2020-01-15 16:20:12 -05:00
|
|
|
#choosing-topic {
|
2019-05-15 13:26:25 -04:00
|
|
|
// prevents content from moving when user selects different move options 525px
|
2019-01-23 03:18:38 -05:00
|
|
|
// is the same width we set on category edit modal
|
|
|
|
width: 525px;
|
2018-12-31 06:47:22 -05:00
|
|
|
|
2013-10-29 15:30:06 -04:00
|
|
|
p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-31 06:47:22 -05:00
|
|
|
.radios {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.radio-label {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
2013-10-29 15:30:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-top: 10px;
|
|
|
|
display: block;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
2018-09-20 16:12:08 -04:00
|
|
|
width: 95%;
|
2013-10-29 15:30:06 -04:00
|
|
|
margin-top: 20px;
|
2018-12-31 06:47:22 -05:00
|
|
|
|
|
|
|
.participant-selector {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ac-wrap {
|
2018-09-20 16:12:08 -04:00
|
|
|
width: 100%;
|
2018-12-31 06:47:22 -05:00
|
|
|
margin-bottom: 9px;
|
2013-10-29 15:30:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-11 07:49:53 -05:00
|
|
|
|
|
|
|
.change-post-notice-modal {
|
|
|
|
.modal-body {
|
|
|
|
min-width: 450px;
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 09:15:17 -05:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
.create-invite-modal,
|
2021-04-23 12:18:23 -04:00
|
|
|
.create-invite-bulk-modal,
|
|
|
|
.share-topic-modal {
|
2022-04-27 09:36:08 -04:00
|
|
|
.title {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 13:19:02 -05:00
|
|
|
&.modal .modal-body {
|
|
|
|
margin: 1em;
|
|
|
|
padding: unset;
|
|
|
|
}
|
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
.modal-inner-container {
|
2021-11-09 14:56:05 -05:00
|
|
|
width: 40em; // scale with user font-size
|
|
|
|
max-width: 100vw; // prevent overflow if user font-size is enourmous
|
2021-03-03 04:45:29 -05:00
|
|
|
}
|
|
|
|
}
|
2022-05-04 21:52:58 -04:00
|
|
|
|
|
|
|
.json-editor-btn-delete {
|
|
|
|
@extend .btn-danger !optional;
|
|
|
|
@extend .no-text !optional;
|
|
|
|
}
|