FIX: Select posts menu styles (#26857)

This commit is contained in:
Jan Cernik 2024-05-02 23:33:09 -05:00 committed by GitHub
parent b1a78d9080
commit 5ac7e01b8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,8 +27,42 @@
}
}
}
.fk-d-menu {
.topic-admin-popup-menu {
width: 14em;
}
}
// Styles for select posts mini menu
.selected-posts {
border: 1px solid var(--tertiary-medium);
background-color: var(--tertiary-low);
.btn {
border: none;
color: var(--secondary);
font-weight: normal;
margin-bottom: 10px;
&:not(.btn-danger) {
background: var(--tertiary);
border-color: var(--tertiary);
&[href] {
color: var(--secondary);
}
&:hover {
color: var(--secondary);
background: var(--tertiary-high);
}
&:active {
@include linear-gradient(var(--tertiary-hover), var(--tertiary));
color: var(--secondary);
}
}
&[disabled] {
text-shadow: 0 1px 0 rgba(var(--primary-rgb), 0.2);
@include linear-gradient(var(--tertiary), var(--tertiary-hover));
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.33);
}
}
}