forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext-menu.css
More file actions
86 lines (67 loc) · 1.94 KB
/
Copy pathcontext-menu.css
File metadata and controls
86 lines (67 loc) · 1.94 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* Context Menu
*/
#Session-Sync-Add-on-ReD .context-menu {
width: 145px;
padding: 5px;
background: #FFF;
border: 1px #CCC solid;
display: none;
position: fixed;
left: 0;
top: 0;
box-shadow: 0px 0px 5px 0 #CCC;
transform: translateX(5px);
z-index: 1000;
}
#Session-Sync-Add-on-ReD .context-menu[data-active="true"] {
display: block;
}
#Session-Sync-Add-on-ReD .context-menu .separator {
width: 100%;
height: 1px;
margin: 3px 0;
background: #CCC;
}
#Session-Sync-Add-on-ReD .context-menu .button {
width: 100%;
padding: 5px 5px 5px 30px;
background-image: url("images/icons/cloud.png");
background-size: 20px;
background-repeat: no-repeat;
background-position: 3px 3px;
box-sizing: border-box;
}
#Session-Sync-Add-on-ReD .context-menu .button:hover {
background-color: #EEE;
cursor: pointer;
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="new-tab"] {
background-image: url("images/icons/ribbon.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="same-tab"] {
background-image: url("images/icons/recycle.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="new-window"] {
background-image: url("images/icons/polaroids.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="copy"] {
background-image: url("images/icons/clipboard.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="edit"] {
background-image: url("images/icons/document.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="delete"] {
background-image: url("images/icons/denied.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="same-window"] {
background-image: url("images/icons/stack.png");
}
#Session-Sync-Add-on-ReD .context-menu .button[icon="new-session"] {
background-image: url("images/icons/star.png");
}
#Session-Sync-Add-on-ReD .context-menu[icons="no"] .button
{
padding: 5px;
background-image: unset;
}