Browse code

Initial uplad w/ php7 fixes

Rainer Volkrodt authored on 2016/03/12 15:54:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,60 @@
1
+.contextMenuIEPopup {
2
+	padding: 0px;
3
+	margin: 0px;
4
+	border: 0px;
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
+.contextMenuItemOver {
20
+	background-color: #B6BDD2;
21
+}
22
+
23
+.contextMenuSeparator {
24
+	width: 100%;
25
+	background-color: #D4D0C8;
26
+	border: 0px;
27
+}
28
+
29
+.contextMenuImage, .contextMenuItemDisabled {
30
+	border: 0px;
31
+}
32
+
33
+.contextMenuIcon {
34
+	background-color: #F0F0EE;
35
+}
36
+
37
+.contextMenuItemOver .contextMenuIcon {
38
+	background-color: #B6BDD2;
39
+}
40
+
41
+.contextMenuIcon {
42
+	background-color: #F0F0EE;
43
+}
44
+
45
+.contextMenuItemDisabled img {
46
+	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);
47
+	-moz-opacity:0.3;
48
+	opacity: 0.3;
49
+}
50
+
51
+.contextMenuText {
52
+	font-family: Tahoma, Verdana, Arial, Helvetica;
53
+	font-size: 11px;
54
+	margin-left: 5px;
55
+	margin-right: 10px;
56
+}
57
+
58
+.contextMenuItemDisabled {
59
+	color: #AAAAAA;
60
+}