2
0

Allow editing status quote policy (#35762)

This commit is contained in:
Echo
2025-08-14 17:04:32 +02:00
committed by GitHub
parent a2cddb9eac
commit 651e51a82e
18 changed files with 591 additions and 16 deletions

View File

@@ -5402,7 +5402,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;
@@ -5431,7 +5432,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;
@@ -5577,6 +5579,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;
@@ -5869,6 +5904,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;
@@ -6375,6 +6421,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;