1 | /*
|
---|
2 | Navigation bar:
|
---|
3 | div_views: contains list of all views and possible toggling options
|
---|
4 | div_modules: contains list of TTCN3 modules
|
---|
5 | div_index: contains list of TTCN3 elements
|
---|
6 |
|
---|
7 | p_header: contains path navigation
|
---|
8 |
|
---|
9 | div_content: contains page content
|
---|
10 | div_element: contains source code of element in Main View
|
---|
11 | div_comment: contains information from T3D comments
|
---|
12 | div_statistics: contains statistics in index.html
|
---|
13 | div_import: contains import table in Import View
|
---|
14 | div_mp: contains tables in ModuleParameter/Testcase View
|
---|
15 | */
|
---|
16 | @media screen{
|
---|
17 | body{
|
---|
18 | background:#FFFFFF;
|
---|
19 | font-family: Arial, Helvetica;
|
---|
20 | color:#000000;
|
---|
21 | margin:0;
|
---|
22 | border:0;
|
---|
23 | padding:0;
|
---|
24 | height:100%;
|
---|
25 | max-height:100%;
|
---|
26 | overflow: auto;
|
---|
27 | }
|
---|
28 |
|
---|
29 | #div_modules, #div_index, #div_content{
|
---|
30 | overflow:auto;
|
---|
31 | }
|
---|
32 |
|
---|
33 | #div_views, #div_index, #div_modules{
|
---|
34 | background-color:#F3F3E7 !important;
|
---|
35 | padding-left:10px;
|
---|
36 | font-size:12px;
|
---|
37 | }
|
---|
38 |
|
---|
39 | #div_element, #div_comment, #div_import, #div_mp, #div_statistics{
|
---|
40 | font-size:12px;
|
---|
41 | }
|
---|
42 |
|
---|
43 | #div_content{
|
---|
44 | border:1px solid #000000;
|
---|
45 | background-color:#FFFFFF;
|
---|
46 | position:fixed;
|
---|
47 | top:60px;
|
---|
48 | left:25%;
|
---|
49 | right:1%;
|
---|
50 | bottom:40px;
|
---|
51 | overflow:auto;
|
---|
52 | padding:2px;
|
---|
53 | }
|
---|
54 |
|
---|
55 |
|
---|
56 | #div_import, #div_mp, #div_statistics, #div_comment, #div_element, #div_statistics{
|
---|
57 | border-top:1px solid #000000;
|
---|
58 | border-bottom:1px solid #000000;
|
---|
59 | }
|
---|
60 |
|
---|
61 | #div_import, #div_mp, #div_statistics{
|
---|
62 | background-color:#F3F3E7 !important;
|
---|
63 | }
|
---|
64 |
|
---|
65 | #div_views{
|
---|
66 | border:1px solid #000000;
|
---|
67 | position:fixed;
|
---|
68 | top:10px;
|
---|
69 | left:1%;
|
---|
70 | bottom:40px;
|
---|
71 | width:22%;
|
---|
72 | overflow:auto;
|
---|
73 |
|
---|
74 | }
|
---|
75 |
|
---|
76 | #div_modules{
|
---|
77 | border:1px solid #000000;
|
---|
78 | position:fixed;
|
---|
79 | top:100px;
|
---|
80 | left:1%;
|
---|
81 | bottom:60%;
|
---|
82 | width:22%;
|
---|
83 | overflow:auto;
|
---|
84 | }
|
---|
85 |
|
---|
86 | #div_index{
|
---|
87 | border:1px solid #000000;
|
---|
88 | position:fixed;
|
---|
89 | top:40%;
|
---|
90 | left:1%;
|
---|
91 | bottom:40px;
|
---|
92 | width:22%;
|
---|
93 | overflow:auto;
|
---|
94 | }
|
---|
95 |
|
---|
96 | #div_comment, #div_element, #div_statistics{
|
---|
97 | background-color:#F3F3E7;
|
---|
98 | padding:15px;
|
---|
99 | padding-top:0px;
|
---|
100 | padding-bottom:0px;
|
---|
101 | margin-bottom:20px;
|
---|
102 | }
|
---|
103 |
|
---|
104 | #p_header a {
|
---|
105 | color:#AAA;
|
---|
106 | }
|
---|
107 |
|
---|
108 | #p_header a:hover {
|
---|
109 | color:#FFF;
|
---|
110 | }
|
---|
111 |
|
---|
112 | #p_t3dversion{
|
---|
113 | right:1%;
|
---|
114 | position:absolute;
|
---|
115 | bottom:1px;
|
---|
116 | text-align:right;
|
---|
117 | font-size:10px;
|
---|
118 | }
|
---|
119 |
|
---|
120 | #path{
|
---|
121 | font-size:10px;
|
---|
122 | }
|
---|
123 |
|
---|
124 | #p_header{
|
---|
125 | border:1px solid #000000;
|
---|
126 | font-size:15px;
|
---|
127 | position:absolute;
|
---|
128 | top:10px;
|
---|
129 | left:25%;
|
---|
130 | right:1%;
|
---|
131 | height:30px;
|
---|
132 | overflow:hidden;
|
---|
133 | margin:0px;
|
---|
134 | padding:10px;
|
---|
135 | background:#53829d;
|
---|
136 | color:#FFFFFF;
|
---|
137 | }
|
---|
138 | }
|
---|
139 | /* Not YET Used */
|
---|
140 | #header {
|
---|
141 | position:absolute;
|
---|
142 | top:0;
|
---|
143 | left:0;
|
---|
144 | width:100%;
|
---|
145 | height:120px;
|
---|
146 | overflow:auto;
|
---|
147 | background:#53829d;
|
---|
148 | color:#fff;
|
---|
149 | }
|
---|
150 |
|
---|
151 | /* Not YET Used */
|
---|
152 | #footer {
|
---|
153 | position:absolute;
|
---|
154 | bottom:0;
|
---|
155 | left:0;
|
---|
156 | width:100%;
|
---|
157 | height:50px;
|
---|
158 | overflow:auto;
|
---|
159 | text-align:right;
|
---|
160 | background:#73a2bd;
|
---|
161 | }
|
---|
162 |
|
---|
163 | .td_commenttype{
|
---|
164 | vertical-align:top;
|
---|
165 | }
|
---|
166 | |
---|
167 | table |
---|
168 | { |
---|
169 | border-collapse:collapse; |
---|
170 | } |
---|
171 | |
---|
172 | table, td, th |
---|
173 | { |
---|
174 | border:1px solid black; |
---|
175 | } |
---|
176 |
|
---|
177 | #table_statistics{
|
---|
178 | margin-top:20px;
|
---|
179 | margin-left: auto;
|
---|
180 | margin-right: auto;
|
---|
181 | }
|
---|
182 |
|
---|
183 | .import_grey a{
|
---|
184 | color:#777777 !important;
|
---|
185 | }
|
---|
186 |
|
---|
187 | .td_table_statistics_left{
|
---|
188 | text-align:right;
|
---|
189 | padding-right:5px;
|
---|
190 | }
|
---|
191 |
|
---|
192 | .td_table_statistics_mid{
|
---|
193 | text-align:center;
|
---|
194 | padding-right:5px;
|
---|
195 | }
|
---|
196 |
|
---|
197 | .td_table_statistics_right{
|
---|
198 | text-align:left;
|
---|
199 | padding-left:5px;
|
---|
200 | }
|
---|
201 |
|
---|
202 | #div_statistics th{
|
---|
203 | width:30%;
|
---|
204 | border-bottom:none !important;
|
---|
205 | }
|
---|
206 |
|
---|
207 | #div_statistics td{
|
---|
208 | text-align:center;
|
---|
209 | }
|
---|
210 |
|
---|
211 | .td_table_statistics_modules{
|
---|
212 | text-align:left !important;
|
---|
213 | }
|
---|
214 |
|
---|
215 | #div_element{
|
---|
216 | font-family:monospace;
|
---|
217 | }
|
---|
218 |
|
---|
219 | a:link, a:active, a:hover, a:visited{
|
---|
220 | color:#333377;
|
---|
221 | text-decoration:none;
|
---|
222 | }
|
---|
223 |
|
---|
224 | #div_element a{
|
---|
225 | color:blue;
|
---|
226 | }
|
---|
227 |
|
---|
228 | #div_element a:hover{
|
---|
229 | color:red;
|
---|
230 | text-decoration:underline;
|
---|
231 | }
|
---|
232 |
|
---|
233 | #table_import td{
|
---|
234 | vertical-align:top;
|
---|
235 | width:33%;
|
---|
236 | padding-left:10px;
|
---|
237 | }
|
---|
238 |
|
---|
239 | #table_import{
|
---|
240 | width:100%;
|
---|
241 | }
|
---|
242 | |
---|
243 | |
---|
244 | |
---|
245 |
|
---|
246 | #table_import_modules{
|
---|
247 | border-left:1px solid #000000;
|
---|
248 | border-right:1px solid #000000;
|
---|
249 | }
|
---|
250 |
|
---|
251 | .div_group_behaviour{
|
---|
252 | padding-left:50px;
|
---|
253 | }
|
---|
254 |
|
---|
255 | .comment_line{
|
---|
256 | padding-right:50px;
|
---|
257 | }
|
---|
258 |
|
---|
259 | .span_tagtype, .span_tagtypeOrig{
|
---|
260 | font-weight:bold;
|
---|
261 | }
|
---|
262 |
|
---|
263 | .bold{
|
---|
264 | font-weight:bold;
|
---|
265 | }
|
---|
266 |
|
---|
267 | #head_name{
|
---|
268 | color:#0000FF;
|
---|
269 | font-weight:bold;
|
---|
270 | }
|
---|
271 |
|
---|
272 | .comment{
|
---|
273 | background-color:#DDDDDD;
|
---|
274 | padding:5px;
|
---|
275 | }
|
---|
276 |
|
---|
277 | .elementName{
|
---|
278 | background-color:#BBBBFF;
|
---|
279 | padding-left:5px;
|
---|
280 | }
|
---|
281 | /*
|
---|
282 | importedby, importedby_ind, selected, imports, imports: determine colors of modules in Import View
|
---|
283 | */
|
---|
284 | .importedby{
|
---|
285 | color:#f86503 !important;
|
---|
286 | }
|
---|
287 |
|
---|
288 | .importedby_ind{
|
---|
289 | color:#FF0000 !important;
|
---|
290 | }
|
---|
291 |
|
---|
292 | .selected{
|
---|
293 | color:#000000 !important;
|
---|
294 | }
|
---|
295 |
|
---|
296 | .imports{
|
---|
297 | color:#278e57 !important;
|
---|
298 | }
|
---|
299 |
|
---|
300 | .imports_ind{
|
---|
301 | color:#00FF00 !important;
|
---|
302 | }
|
---|
303 | |
---|
304 | |
---|
305 | /* spans (toggle) notes */
|
---|
306 | .span_showhidenote{
|
---|
307 | font-size: 5pt;
|
---|
308 | bottom: 0.5em;
|
---|
309 | }
|
---|
310 |
|
---|
311 | .padding_left_10px{
|
---|
312 | padding-left:10px;
|
---|
313 | border:none !important;
|
---|
314 | }
|
---|
315 | |
---|
316 | .padding_left_10px tr td{
|
---|
317 | border:none !important;
|
---|
318 | }
|
---|
319 | |
---|
320 |
|
---|
321 | .padding_left_20px{
|
---|
322 | padding-left:20px;
|
---|
323 | }
|
---|
324 | /* contains source code */
|
---|
325 | pre {
|
---|
326 | white-space: pre-wrap;
|
---|
327 | }
|
---|
328 | /*spans highlighted TTCN3 keywords*/
|
---|
329 | .syntax{
|
---|
330 | font-weight:bold !important;
|
---|
331 | }
|
---|
332 |
|
---|
333 | @media print{ |
---|
334 | |
---|
335 | body{
|
---|
336 | background:#FFFFFF;
|
---|
337 | font-family: Arial, Helvetica;
|
---|
338 | color:#000000;
|
---|
339 | margin:0;
|
---|
340 | border:0;
|
---|
341 | padding:0;
|
---|
342 | height:100%;
|
---|
343 | max-height:100%;
|
---|
344 | } |
---|
345 |
|
---|
346 | div{
|
---|
347 | margin-left:6px !important;
|
---|
348 | }
|
---|
349 | #div_views, #div_index, #div_modules {
|
---|
350 | display:none !important;
|
---|
351 | }
|
---|
352 |
|
---|
353 | #div_comment{
|
---|
354 | border-bottom:1px solid #000000;
|
---|
355 | }
|
---|
356 |
|
---|
357 | p, pre, span, a, div{
|
---|
358 | color:#000000 !important;background-color:#FFFFFF !important;font-size:12px !important;
|
---|
359 | }
|
---|
360 | #div_content, #p_header{
|
---|
361 | left:0px !important; width:615px !important; border:none !important; height:auto !important;
|
---|
362 | } |
---|
363 | |
---|
364 | #div_element pre{
|
---|
365 | border:0.5px dotted black !important;
|
---|
366 | } |
---|
367 | |
---|
368 | |
---|
369 | #p_t3dversion{
|
---|
370 | text-align:right;
|
---|
371 | font-size:10px;
|
---|
372 | }
|
---|
373 |
|
---|
374 | }
|
---|