Browse code

3.5.6 efiction version

Jimako authored on 2024/03/09 16:09:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,74 @@
1
+.contextMenuIEPopup {
2
+	padding: 0;
3
+	margin: 0;
4
+	border: 0;
5
+	overflow: hidden;
6
+}
7
+
8
+.contextMenu {
9
+	position: absolute;
10
+	cursor: default;
11
+	z-index: 1000;
12
+	border: 1px solid #D4D0C8;
13
+	background-color: #FFFFFF;
14
+}
15
+
16
+.contextMenuItem, .contextMenuItemOver {
17
+}
18
+
19
+.contextMenuSeparator {
20
+	width: 100%;
21
+	background-color: #D4D0C8;
22
+	border: 0;
23
+}
24
+
25
+.contextMenuImage, .contextMenuItemDisabled {
26
+	border: 0;
27
+}
28
+
29
+.contextMenuIcon {
30
+	background-color: #F0F0EE;
31
+}
32
+
33
+.contextMenuItemOver .contextMenuIcon {
34
+	background-color: #B6BDD2;
35
+}
36
+
37
+.contextMenuIcon {
38
+	background-color: #F0F0EE;
39
+}
40
+
41
+.contextMenuItemDisabled img {
42
+	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);
43
+	-moz-opacity:0.3;
44
+	opacity: 0.3;
45
+}
46
+
47
+.contextMenuText {
48
+	font-family: Tahoma, Verdana, Arial, Helvetica;
49
+	font-size: 11px;
50
+	line-height: 20px;
51
+}
52
+
53
+.contextMenuItemDisabled {
54
+	color: #AAAAAA;
55
+}
56
+
57
+.contextMenuText a {
58
+	display: block;
59
+	line-height: 20px;
60
+	width: 100%;
61
+	text-decoration: none;
62
+	color: black;
63
+	font-weight: normal;
64
+	margin: 0;
65
+	padding: 0;
66
+}
67
+
68
+.contextMenuText a:hover {
69
+	background-color: #B6BDD2;
70
+	text-decoration: none !important;
71
+	font-weight: normal;
72
+	margin: 0;
73
+	padding: 0;
74
+}