forked from callmenick/Custom-Context-Menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme-12-dark.css
126 lines (103 loc) · 2.01 KB
/
theme-12-dark.css
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
a.context-menu__link {
border-radius: 5px;
width: 100%;
}
.fa-window-minimize {
color: rgb(93,94,96);
}
#context-menu a.sm-link-icon::after{
font-family: "FontAwesome";
content: "\f054"; /* fa-chevron-right */
position: absolute;
right: 10px;
font-size: 0.8em;
}
/* context menu */
.context-menu {
background-color: rgb(40,41,43);
border: solid 1px rgb(83,84,86);
box-shadow: 3px 3px 10px #1e1e1e;
}
.context-menu-active { /* needed to avoid no right-click */
display: block;
}
.context-menu__link {
color: #fff;
border-radius: 5px;
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 3px;
}
.context-menu__link:hover {
color: #fff;
border-radius: 5px;
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 3px;
width: 96%;
}
.context-menu__link-disabled {
color: rgb(103,104,106);
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
}
.context-menu__link-disabled:hover {
color: rgb(103,104,106);
background-color: rgb(40,41,43);
width: 100%;
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
}
/* context-submenu */
.context-submenu {
background-color: rgb(40,41,43);
border: solid 1px rgb(83,84,86);
box-shadow: 3px 3px 10px #1e1e1e;
}
.context-submenu-active { /* needed to avoid no right-click */
display: block;
}
.context-submenu__link {
color: #fff;
border-radius: 5px;
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 3px;
}
.context-submenu__link:hover {
color: #fff;
border-radius: 5px;
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 3px;
}
.submenuActive {
color: #fff;
border-radius: 5px;
margin-left: 3px;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 3px;
}
.speed {
color: rgb(103,104,106);
}
.linkover:hover .speed {
color: #fff;
}
.separator {
margin-left: 10px;
margin-right: 10px;
width: 85% !important;
}
.separator:hover {
margin-left: 10px;
margin-right: 10px;
width: 85%;
}