[Glitch] Allow editing status quote policy

Port 651e51a82e to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Echo
2025-08-14 17:04:32 +02:00
committed by Claire
parent 8a7324d114
commit 2a593bd89e
17 changed files with 576 additions and 15 deletions

View File

@@ -5534,7 +5534,8 @@ a.status-card {
}
.privacy-dropdown__dropdown,
.language-dropdown__dropdown {
.language-dropdown__dropdown,
.visibility-dropdown__dropdown {
box-shadow: var(--dropdown-shadow);
background: var(--dropdown-background-color);
backdrop-filter: $backdrop-blur-filter;
@@ -5563,7 +5564,8 @@ a.status-card {
z-index: 9999;
}
.privacy-dropdown__option {
.privacy-dropdown__option,
.visibility-dropdown__option {
font-size: 14px;
line-height: 20px;
letter-spacing: 0.25px;
@@ -5814,6 +5816,39 @@ a.status-card {
}
}
.visibility-dropdown {
&__overlay[data-popper-placement] {
z-index: 9999;
}
&__label.disabled {
cursor: default;
opacity: 0.5;
}
&__button {
color: $primary-text-color;
background: var(--dropdown-background-color);
border: 1px solid var(--dropdown-border-color);
padding: 8px 12px;
width: 100%;
text-align: left;
border-radius: 4px;
font-size: 14px;
height: 40px;
&:disabled {
cursor: default;
}
}
&__helper {
margin-top: 4px;
font-size: 0.8em;
color: $dark-text-color;
}
}
.search {
margin-bottom: 32px;
position: relative;
@@ -6106,6 +6141,17 @@ a.status-card {
}
}
.modal-root label {
cursor: pointer;
display: block;
> span {
display: block;
font-weight: 500;
margin-bottom: 8px;
}
}
.video-modal .video-player {
max-height: 80vh;
max-width: 100vw;
@@ -6612,6 +6658,15 @@ a.status-card {
letter-spacing: 0.25px;
overflow-y: auto;
&__description {
margin: 24px 24px 0;
color: $darker-text-color;
a {
color: inherit;
}
}
&__form {
display: flex;
flex-direction: column;