pleroma-fe/src/components/popover/popover.scss

112 lines
2.4 KiB
SCSS
Raw Normal View History

2025-01-12 01:46:10 +02:00
.popover-trigger-button {
display: inline-block;
}
.popover {
z-index: var(--ZI_popover_override, var(--ZI_popovers));
position: fixed;
min-width: 0;
max-width: calc(100vw - 20px);
box-shadow: var(--shadow);
}
.popover-default {
&::after {
content: "";
position: absolute;
top: -1px;
bottom: -1px;
left: -1px;
right: -1px;
z-index: -1px;
box-shadow: var(--shadow);
pointer-events: none;
}
border-radius: var(--roundness);
border-color: var(--border);
border-style: solid;
border-width: 1px;
background-color: var(--background);
}
.dropdown-menu {
display: block;
padding: 0;
font-size: 1em;
text-align: left;
list-style: none;
max-width: 100vw;
z-index: var(--ZI_popover_override, var(--ZI_popovers));
white-space: nowrap;
background-color: var(--background);
.dropdown-divider {
height: 0;
margin: 0.5rem 0;
overflow: hidden;
border-top: 1px solid var(--border);
}
.dropdown-item:not(button, a) {
padding: 0;
}
a.dropdown-item,
button.dropdown-item,
2025-01-12 18:49:44 +02:00
.dropdown-item:not(button, a) {
&.disabled {
cursor: not-allowed;
}
2025-01-12 01:46:10 +02:00
2025-01-12 18:49:44 +02:00
&:not(.disabled) {
cursor: pointer;
}
2025-01-12 01:46:10 +02:00
2025-01-12 18:49:44 +02:00
.main-button {
box-sizing: border-box;
padding: var(--__horizontal-gap) var(--__horizontal-gap);
grid-gap: var(--__horizontal-gap);
display: grid;
border: none;
align-items: center;
grid-template-columns: 1fr var(--__line-height);
grid-auto-flow: column;
grid-auto-columns: auto;
2025-01-12 01:46:10 +02:00
2025-01-12 18:49:44 +02:00
.menu-checkbox {
display: inline-block;
vertical-align: middle;
min-width: calc(var(--__line-height) + 1px);
max-width: calc(var(--__line-height) + 1px);
min-height: calc(var(--__line-height) + 1px);
max-height: calc(var(--__line-height) + 1px);
line-height: var(--__line-height);
text-align: center;
border-radius: 0;
box-shadow: var(--shadow);
margin-right: var(--__horizontal-gap);
2025-01-12 01:46:10 +02:00
&.menu-checkbox-checked::after {
2025-01-12 18:49:44 +02:00
font-size: 1.25em;
content: "";
2025-01-12 01:46:10 +02:00
}
2025-01-12 18:49:44 +02:00
&.-radio {
border-radius: 9999px;
2025-01-12 16:34:16 +02:00
2025-01-12 18:49:44 +02:00
&.menu-checkbox-checked::after {
font-size: 2em;
content: "";
}
}
}
}
2025-01-12 16:34:16 +02:00
2025-01-12 18:49:44 +02:00
&.-icon {
.main-button {
grid-template-columns: var(--__line-height) 1fr;
}
}
2025-01-12 16:34:16 +02:00
}
2025-01-12 01:46:10 +02:00
}