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
100 lines (77 loc) · 2.17 KB
/
Copy pathcontext-menu.css
File metadata and controls
100 lines (77 loc) · 2.17 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/**
* Context Menu
*/
#session-sync .context-menu {
width: 180px;
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: 3000;
box-sizing: border-box;
}
#session-sync .context-menu[data-active="true"] {
display: block;
}
#session-sync .context-menu .separator {
width: 100%;
height: 1px;
margin: 3px 0;
background: #CCC;
}
#session-sync .context-menu .button {
width: 100%;
padding: 5px 5px 5px 30px;
background-image: url("images/icons/heart.png");
background-size: 20px;
background-repeat: no-repeat;
background-position: 3px 3px;
box-sizing: border-box;
}
#session-sync .context-menu .button:hover {
background-color: #EEE;
cursor: pointer;
}
#session-sync .context-menu .button[icon="save"] {
background-image: url("images/icons/heart.png");
}
#session-sync .context-menu .button[icon="new-tab"] {
background-image: url("images/icons/ribbon.png");
}
#session-sync .context-menu .button[icon="same-tab"] {
background-image: url("images/icons/recycle.png");
}
#session-sync .context-menu .button[icon="new-window"] {
background-image: url("images/icons/frames.png");
}
#session-sync .context-menu .button[icon="replace-current"] {
background-image: url("images/material_icons/repeat_one.svg");
}
#session-sync .context-menu .button[icon="replace-all"] {
background-image: url("images/material_icons/repeat.svg");
}
#session-sync .context-menu .button[icon="copy"] {
background-image: url("images/icons/clipboard.png");
}
#session-sync .context-menu .button[icon="edit"] {
background-image: url("images/icons/document.png");
}
#session-sync .context-menu .button[icon="delete"] {
background-image: url("images/icons/denied.png");
}
#session-sync .context-menu .button[icon="same-window"] {
background-image: url("images/icons/stack.png");
}
#session-sync .context-menu .button[icon="new-session"] {
background-image: url("images/icons/star.png");
}
#session-sync .context-menu[icons="no"] .button
{
padding: 5px;
background-image: unset;
}