2020-03-27 13:59:38 -07:00
|
|
|
.modal-root__modal {
|
2020-05-15 20:48:08 -07:00
|
|
|
pointer-events: auto;
|
|
|
|
display: flex;
|
|
|
|
z-index: 9999;
|
|
|
|
max-height: 100%;
|
|
|
|
overflow-y: hidden;
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal {
|
2020-06-24 19:53:25 -07:00
|
|
|
.audio-player.detailed,
|
2020-05-15 20:48:08 -07:00
|
|
|
.extended-video-player {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-06-24 19:53:25 -07:00
|
|
|
}
|
|
|
|
|
2021-05-17 19:41:07 -07:00
|
|
|
.audio-player {
|
2021-05-17 20:24:56 -07:00
|
|
|
max-width: 800px;
|
|
|
|
max-height: 600px;
|
2021-05-17 19:41:07 -07:00
|
|
|
}
|
|
|
|
|
2020-06-24 19:53:25 -07:00
|
|
|
.extended-video-player {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2020-05-15 20:48:08 -07:00
|
|
|
video {
|
2023-02-06 09:18:49 -08:00
|
|
|
@apply max-w-full max-h-[80%];
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
2022-05-31 05:55:31 -07:00
|
|
|
.error-modal {
|
2022-12-21 12:01:57 -08:00
|
|
|
@apply text-gray-900;
|
2020-05-15 20:48:08 -07:00
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2023-02-06 09:18:49 -08:00
|
|
|
&__body {
|
2020-10-11 14:23:19 -07:00
|
|
|
display: flex;
|
2020-05-15 20:48:08 -07:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2023-02-06 09:18:49 -08:00
|
|
|
align-items: center;
|
|
|
|
height: 80vh;
|
|
|
|
width: 80vw;
|
|
|
|
max-width: 520px;
|
|
|
|
max-height: 420px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 25px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
opacity: 0;
|
|
|
|
user-select: text;
|
|
|
|
}
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2023-02-06 09:18:49 -08:00
|
|
|
&__footer {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 25px;
|
2020-05-15 20:48:08 -07:00
|
|
|
|
2023-02-06 09:18:49 -08:00
|
|
|
& > div {
|
|
|
|
min-width: 33px;
|
|
|
|
}
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
2022-05-31 05:55:31 -07:00
|
|
|
.actions-modal {
|
2023-02-06 09:18:49 -08:00
|
|
|
@apply flex-col relative text-gray-400 overflow-hidden w-full max-w-lg m-auto bg-white dark:bg-gray-900 shadow-xl rounded-2xl;
|
|
|
|
max-height: calc(100vh - 3rem);
|
|
|
|
|
|
|
|
&__item-label {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2020-05-28 17:58:37 -07:00
|
|
|
|
2020-05-15 20:48:08 -07:00
|
|
|
.dropdown-menu__separator {
|
2022-04-14 13:20:53 -07:00
|
|
|
@apply block m-2 h-[1px] bg-gray-200 dark:bg-gray-600;
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-05-28 17:58:37 -07:00
|
|
|
|
2023-02-06 09:18:49 -08:00
|
|
|
&__status {
|
|
|
|
@apply overflow-y-auto max-h-[300px];
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-05-28 17:58:37 -07:00
|
|
|
|
2020-05-15 20:48:08 -07:00
|
|
|
ul {
|
2022-03-21 11:09:01 -07:00
|
|
|
@apply my-2 flex-shrink-0 overflow-y-auto;
|
2020-05-15 20:48:08 -07:00
|
|
|
max-height: calc(100vh - 147px);
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
&.with-status { max-height: calc(80vh - 75px); }
|
2020-05-28 17:58:37 -07:00
|
|
|
|
2020-05-15 20:48:08 -07:00
|
|
|
li:not(:empty) {
|
2022-03-21 11:09:01 -07:00
|
|
|
a,
|
|
|
|
button {
|
2023-02-06 09:18:49 -08:00
|
|
|
@apply flex items-center px-4 py-3 text-gray-700 dark:text-gray-500 hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gray-100 dark:focus:bg-primary-800 no-underline text-left;
|
2020-05-28 17:58:37 -07:00
|
|
|
|
2021-11-08 08:21:33 -08:00
|
|
|
&.destructive {
|
2023-02-06 09:18:49 -08:00
|
|
|
@apply text-danger-600 dark:text-danger-400;
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2021-11-04 08:37:16 -07:00
|
|
|
|
2021-11-04 11:16:04 -07:00
|
|
|
.svg-icon:first-child {
|
2022-11-25 09:04:11 -08:00
|
|
|
@apply min-w-[1.25rem] w-5 h-5;
|
2021-11-04 11:16:04 -07:00
|
|
|
|
|
|
|
svg {
|
|
|
|
stroke-width: 1.5;
|
|
|
|
}
|
|
|
|
}
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2022-03-21 11:09:01 -07:00
|
|
|
|
2023-01-05 12:53:23 -08:00
|
|
|
button[type='button'] {
|
2022-08-15 05:48:52 -07:00
|
|
|
@apply w-full justify-center text-center;
|
2022-03-21 11:09:01 -07:00
|
|
|
}
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
2022-05-31 05:55:31 -07:00
|
|
|
.reply-mentions-modal__accounts {
|
|
|
|
display: block;
|
|
|
|
flex-direction: row;
|
|
|
|
flex: 1;
|
|
|
|
overflow-y: auto;
|
|
|
|
min-height: 300px;
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
2022-01-02 12:43:53 -08:00
|
|
|
.remote-interaction-modal {
|
|
|
|
&__content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
row-gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__fields {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
|
|
width: 100%;
|
|
|
|
|
2022-04-14 06:51:23 -07:00
|
|
|
button {
|
|
|
|
align-self: flex-end;
|
2022-01-02 12:43:53 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
margin: 0 -10px;
|
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
2022-04-14 06:51:23 -07:00
|
|
|
@apply border-b border-gray-300 dark:border-gray-600;
|
2023-01-05 12:53:23 -08:00
|
|
|
content: '';
|
2022-01-02 12:43:53 -08:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-16 05:17:00 -07:00
|
|
|
@media screen and (width <= 895px) {
|
2022-01-02 12:43:53 -08:00
|
|
|
margin: 0;
|
|
|
|
border-radius: 6px;
|
|
|
|
height: unset !important;
|
|
|
|
width: 440px !important;
|
|
|
|
}
|
|
|
|
|
2023-09-16 05:17:00 -07:00
|
|
|
@media screen and (width <= 480px) {
|
2022-01-02 12:43:53 -08:00
|
|
|
width: 330px !important;
|
|
|
|
}
|
|
|
|
}
|