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,182 @@
1
+/* Hide the advanced tab */
2
+#advanced_tab {
3
+	display: none;
4
+}
5
+
6
+#metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright {
7
+	width: 280px;
8
+}
9
+
10
+#doctype, #docencoding {
11
+	width: 200px;
12
+}
13
+
14
+#langcode {
15
+	width: 30px;
16
+}
17
+
18
+#bgimage {
19
+	width: 220px;	
20
+}
21
+
22
+#fontface {
23
+	width: 240px;
24
+}
25
+
26
+#leftmargin, #rightmargin, #topmargin, #bottommargin {
27
+	width: 50px;
28
+}
29
+
30
+.panel_wrapper div.current {
31
+	height: 400px;
32
+}
33
+
34
+#stylesheet, #style {
35
+	width: 240px;
36
+}
37
+
38
+/* Head list classes */
39
+
40
+.headlistwrapper {
41
+	width: 100%;
42
+}
43
+
44
+.addbutton, .removebutton, .moveupbutton, .movedownbutton {
45
+	border-top: 1px solid;
46
+	border-left: 1px solid;
47
+	border-bottom: 1px solid;
48
+	border-right: 1px solid;
49
+	border-color: #F0F0EE;
50
+	cursor: default;
51
+	display: block;
52
+	width: 20px;
53
+	height: 20px;
54
+}
55
+
56
+#doctypes {
57
+	width: 200px;
58
+}
59
+
60
+.addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover {
61
+	border: 1px solid #0A246A;
62
+	background-color: #B6BDD2;
63
+}
64
+
65
+.addbutton {
66
+	background-image: url('../images/add.gif');
67
+	float: left;
68
+	margin-right: 3px;
69
+}
70
+
71
+.removebutton {
72
+	background-image: url('../images/remove.gif');
73
+	float: left;
74
+}
75
+
76
+.moveupbutton {
77
+	background-image: url('../images/move_up.gif');
78
+	float: left;
79
+	margin-right: 3px;
80
+}
81
+
82
+.movedownbutton {
83
+	background-image: url('../images/move_down.gif');
84
+	float: left;
85
+}
86
+
87
+.selected {
88
+	border: 1px solid #0A246A;
89
+	background-color: #B6BDD2;
90
+}
91
+
92
+.toolbar {
93
+	width: 100%;
94
+}
95
+
96
+#headlist {
97
+	width: 100%;
98
+	margin-top: 3px;
99
+	font-size: 11px;
100
+}
101
+
102
+#info, #title_element, #meta_element, #script_element, #style_element, #base_element, #link_element, #comment_element, #unknown_element {
103
+	display: none;
104
+}
105
+
106
+#addmenu {
107
+	position: absolute;
108
+	border: 1px solid gray;
109
+	display: none;
110
+	z-index: 100;
111
+	background-color: white;
112
+}
113
+
114
+#addmenu a {
115
+	display: block;
116
+	width: 100%;
117
+	line-height: 20px;
118
+	text-decoration: none;
119
+	background-color: white;
120
+}
121
+
122
+#addmenu a:hover {
123
+	background-color: #B6BDD2;
124
+	color: black;
125
+}
126
+
127
+#addmenu span {
128
+	padding-left: 10px;
129
+	padding-right: 10px;
130
+}
131
+
132
+#updateElementPanel {
133
+	display: none;
134
+}
135
+
136
+#script_element .panel_wrapper div.current {
137
+	height: 108px;
138
+}
139
+
140
+#style_element .panel_wrapper div.current {
141
+	height: 108px;
142
+}
143
+
144
+#link_element  .panel_wrapper div.current {
145
+	height: 140px;
146
+}
147
+
148
+#element_script_value {
149
+	width: 100%;
150
+	height: 100px;
151
+}
152
+
153
+#element_comment_value {
154
+	width: 100%;
155
+	height: 120px;
156
+}
157
+
158
+#element_style_value {
159
+	width: 100%;
160
+	height: 100px;
161
+}
162
+
163
+#element_title, #element_script_src, #element_meta_name, #element_meta_content, #element_base_href, #element_link_href, #element_link_title {
164
+	width: 250px;
165
+}
166
+
167
+.updateElementButton {
168
+	margin-top: 3px;
169
+}
170
+
171
+/* MSIE specific styles */
172
+
173
+* html .addbutton, * html .removebutton, * html .moveupbutton, * html .movedownbutton {
174
+	width: 22px;
175
+	height: 22px;
176
+}
177
+
178
+textarea {
179
+	height: 55px;
180
+}
181
+
182
+.panel_wrapper div.current {height:420px;}
0 183
\ No newline at end of file