This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
@import '../popup/index';
.nut-theme-dark {
.nut-menu-item__content {
.nut-menu-item__option {
color: $dark-color;
}
}
}
.nut-menu-item {
position: fixed;
right: 0;
left: 0;
z-index: $menu-bar-opened-z-index;
height: 100vh;
overflow: hidden;
.active {
font-weight: $menu-active-item-font-weight;
color: $menu-item-active-text-color !important;
}
}
.nut-menu-item__content {
display: flex;
flex-wrap: wrap;
max-height: $menu-item-content-max-height;
padding: $menu-item-content-padding;
&.nut-menu-item__overflow {
overflow-y: auto;
}
.nut-menu-item__option {
display: flex;
align-items: center;
padding-top: $menu-item-option-padding-top;
padding-bottom: $menu-item-option-padding-bottom;
padding-left: 12px;
padding-right: 12px;
font-size: $font-size-2;
color: $title-color;
.nut-menu-item__span {
display: flex;
align-items: center;
margin-right: $menu-item-option-i-margin-right;
}
}
}
.nut-menu-item-placeholder-element {
position: fixed;
right: 0;
left: 0;
z-index: $menu-bar-opened-z-index;
background-color: transparent;
}