-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSidebarContextMenu.module.css
More file actions
51 lines (46 loc) · 875 Bytes
/
SidebarContextMenu.module.css
File metadata and controls
51 lines (46 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.contextMenu {
position: fixed;
z-index: 10000;
min-width: 144px;
padding: 4px;
border: 1px solid #2f2f2f;
border-radius: 10px;
background-color: #1e1e1e;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.contextMenuItem {
display: block;
width: 100%;
padding: 6px 8px;
border: none;
border-radius: 8px;
background: transparent;
color: #f2f2f5;
font-size: 12px;
font-weight: 600;
text-align: left;
cursor: pointer;
}
.contextMenuItem:hover,
.contextMenuItem:focus-visible {
outline: none;
background-color: #6651cc;
}
.contextMenuItemInner {
display: grid;
grid-template-columns: 16px minmax(0, 1fr);
align-items: center;
column-gap: 8px;
width: 100%;
}
.contextMenuItemSection {
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
margin: 0;
}
.contextMenuItemLabel {
justify-self: start;
text-align: left;
}