| 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
 | | .context { |  |   position: fixed; |  |   top: 0; |  |   left: 0; |  |   z-index: 999; |  |   display: inline-block; |  |   padding: 3px 0; |  |   min-width: 270px; |  |   font-size: 9pt; |  |   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |  |   border: 1px solid #333333; |  |   border-radius: 6px; |  |   color: #ffffff; |  |   background: #262933; |  |   box-shadow: 2px 2px 2px -1px rgb(0 0 0 / 50%); |  |   -webkit-touch-callout: none; |  |   user-select: none; |  | } |  |   |  | .context .item { |  |   padding: 4px 19px; |  |   cursor: default; |  |   color: inherit; |  | } |  |   |  | .context .item:hover { |  |   background: #2777ff; |  | } |  |   |  | .context .item:hover .hotkey { |  |   color: #ffffff; |  | } |  |   |  | .context .disabled { |  |   color: #878b90; |  | } |  |   |  | .context .disabled:hover { |  |   background: inherit; |  | } |  |   |  | .context .disabled:hover .hotkey { |  |   color: #878b90; |  | } |  |   |  | .context .separator { |  |   margin: 4px 0; |  |   padding: 0; |  |   height: 0; |  |   border-top: 1px solid #454545; |  | } |  |   |  | .hotkey { |  |   float: right; |  |   color: #878b90; |  | } | 
 |