2024-12-02 09:08:43 -05:00
|
|
|
html.modal-open {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2023-11-15 05:14:47 -05:00
|
|
|
.d-modal {
|
|
|
|
--modal-max-width: 600px;
|
|
|
|
--modal-width: 30em; // set in ems to scale with user font-size
|
|
|
|
--modal-min-width: 400px;
|
|
|
|
&__container {
|
|
|
|
max-width: var(--modal-max-width);
|
|
|
|
min-width: var(--modal-min-width);
|
2024-10-21 21:09:29 -04:00
|
|
|
min-height: var(--modal-min-height); // unset, optional theme utility
|
2023-11-15 05:14:47 -05:00
|
|
|
.d-modal.-large & {
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
.d-modal.-max & {
|
|
|
|
max-width: 90vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
animation: fade 0.25s;
|
2023-09-14 17:31:43 -04:00
|
|
|
@media (prefers-reduced-motion) {
|
|
|
|
animation-duration: 0s;
|
|
|
|
}
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
2014-03-20 16:33:03 -04:00
|
|
|
|
2019-01-10 21:50:00 -05:00
|
|
|
.close {
|
2022-10-12 09:31:59 -04:00
|
|
|
font-size: var(--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
|
|
|
}
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-15 16:20:12 -05:00
|
|
|
.choose-topic-modal {
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
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-03-03 04:45:29 -05:00
|
|
|
}
|