forked from
me.webbeef.org/browser.html
Rewild Your Web
1/* SPDX-License-Identifier: AGPL-3.0-or-later */
2
3@import url(//system.localhost:8888/menu_shared.css);
4
5:host {
6 display: none;
7 position: absolute;
8 top: 0;
9 left: 0;
10 width: 100%;
11 height: 100%;
12 z-index: var(--z-modal);
13}
14
15menu {
16 position: absolute;
17 z-index: 1001;
18}
19
20menu li .icon-slot {
21 width: 1em;
22 height: 1em;
23 display: flex;
24 align-items: center;
25 justify-content: center;
26 flex-shrink: 0;
27}
28
29menu li.disabled {
30 opacity: 0.5;
31 cursor: default;
32 pointer-events: none;
33}
34
35menu li lucide-icon {
36 width: 1em;
37 height: 1em;
38}
39
40/* Align check icon to the right */
41menu li lucide-icon[name="check"] {
42 margin-left: auto;
43}