-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContextMenu.module.css
More file actions
70 lines (63 loc) · 1.47 KB
/
ContextMenu.module.css
File metadata and controls
70 lines (63 loc) · 1.47 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.context_menu_container {
display: flex;
flex-direction: row;
height: 100vh;
left: 0px;
position: fixed;
top: 0px;
width: 100vw;
z-index: 1000;
}
.context_menu_container .context_menu {
background-color: var(--src-color-00);
border: 1px solid var(--src-color-01);
border-radius: 5px;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.12);
display: flex;
flex-direction: column;
gap: 10px;
list-style-type: none;
padding: 10px;
position: absolute;
}
.context_menu_container .context_menu > li {
display: flex;
flex-direction: row;
position: relative;
}
.context_menu_container .context_menu > li > a {
align-items: center;
color: var(--src-color-04);
display: flex;
flex-direction: row;
font-size: 16px;
gap: 10px;
justify-content: space-between;
white-space: nowrap;
width: 100%;
}
.context_menu_container .context_menu > li > a:hover {
color: var(--src-color-03);
cursor: pointer;
text-decoration: none;
}
.context_menu_container .context_menu > li > button {
align-items: center;
background-color: transparent;
border: 1px solid transparent;
color: var(--src-color-04);
display: flex;
flex-direction: row;
font-size: 16px;
gap: 10px;
justify-content: space-between;
white-space: nowrap;
width: 100%;
}
.context_menu_container .context_menu > li > button:hover {
color: var(--src-color-03);
cursor: pointer;
}
.context_menu_container .context_menu > li > button.button_selected {
color: var(--src-color-03);
}