mirror of
https://github.com/zotero/zotero.git
synced 2026-09-27 01:21:27 +00:00
20 lines
465 B
SCSS
20 lines
465 B
SCSS
menu,
|
|
menuitem {
|
|
.menu-iconic-icon[src] {
|
|
-moz-default-appearance: none;
|
|
}
|
|
}
|
|
|
|
@each $cls, $icon in $menu-icons {
|
|
.zotero-menuitem-#{$cls} {
|
|
// If icon starts with "light-dark:", use light and dark icon
|
|
@if str-slice($icon, 0, 11) == "light-dark:" {
|
|
@include focus-states using ($color) {
|
|
@include svgicon-menu(str-slice($icon, 12), $color, "16");
|
|
}
|
|
}
|
|
@else {
|
|
@include svgicon-menu($icon, "universal", "16", false, false, false);
|
|
}
|
|
}
|
|
};
|