2025-10-20 13:16:00 +02:00
|
|
|
.widget-menu
|
|
|
|
|
{
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu.widget-menu-collapsed > .widget-menu-platform
|
|
|
|
|
{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-button
|
|
|
|
|
{
|
|
|
|
|
text-transform: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-entry
|
|
|
|
|
{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-platform
|
|
|
|
|
{
|
|
|
|
|
background-color: hsl(var(--hue), 0%, 25%);
|
|
|
|
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
border: 1px solid hsl(var(--hue), 0%, 0%);
|
|
|
|
|
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
2025-10-29 11:40:27 +01:00
|
|
|
/*
|
2025-10-20 13:16:00 +02:00
|
|
|
min-width: 200px;
|
2025-10-29 11:40:27 +01:00
|
|
|
*/
|
2025-10-20 13:16:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-platform:not(.widget-menu-platform-collapsed)
|
|
|
|
|
{
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 50px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-entries
|
|
|
|
|
{
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-entry
|
|
|
|
|
{
|
2025-10-26 21:46:58 +01:00
|
|
|
margin: 12px 8px;
|
2025-10-20 13:16:00 +02:00
|
|
|
text-transform: capitalize;
|
2025-10-26 21:46:58 +01:00
|
|
|
background-color: hsl(var(--hue), 0%, 25%);
|
|
|
|
|
color: hsl(var(--hue), 0%, 100%);
|
2025-10-29 11:40:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-menu-entry:not(:hover) > span
|
|
|
|
|
{
|
2025-10-26 21:46:58 +01:00
|
|
|
border-bottom: 2px solid hsl(0, 0%, 25%);
|
2025-10-20 13:16:00 +02:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 11:40:27 +01:00
|
|
|
.widget-menu-entry:hover > span
|
2025-10-20 13:16:00 +02:00
|
|
|
{
|
2025-10-26 21:46:58 +01:00
|
|
|
border-bottom: 2px solid hsl(0, 0%, 100%);
|
|
|
|
|
|
|
|
|
|
transition: 1s ease color;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 13:16:00 +02:00
|
|
|
.widget-menu-entry.widget-menu-entry-hidden
|
|
|
|
|
{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|