424
425
426
427
428
429
430
431
432
433
434
435
436
437
|
@ float: right;
@ width: 33%;
@ border-width: medium;
@ border-style: double;
@ margin: 10;
@ }
;
/*
** WEBPAGE: style.css
*/
void page_style_css(void){
char *zCSS = 0;
|
>
>
>
>
>
>
|
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
|
@ float: right;
@ width: 33%;
@ border-width: medium;
@ border-style: double;
@ margin: 10;
@ }
;
const char zSpanDisabledLinks[] =
@ /* hyperlinks disabled text */
@ span.disabledLinks {
@ color: red;
@ }
;
/*
** WEBPAGE: style.css
*/
void page_style_css(void){
char *zCSS = 0;
|
448
449
450
451
452
453
454
455
456
457
458
459
460
461
|
cgi_append_content(zTdTimelineOmitted,-1);
if (!strstr(zCSS,"timelineComment"))
cgi_append_content(zTdTimelineComment,-1);
if (!strstr(zCSS,"timelineLeafDsp"))
cgi_append_content(zDivTimelineLeafDsp,-1);
if (!strstr(zCSS,"nomenclatureSidebox"))
cgi_append_content(zDivNomenclatureSidebox,-1);
g.isConst = 1;
}
/*
** WEBPAGE: test_env
*/
void page_test_env(void){
|
>
>
|
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
cgi_append_content(zTdTimelineOmitted,-1);
if (!strstr(zCSS,"timelineComment"))
cgi_append_content(zTdTimelineComment,-1);
if (!strstr(zCSS,"timelineLeafDsp"))
cgi_append_content(zDivTimelineLeafDsp,-1);
if (!strstr(zCSS,"nomenclatureSidebox"))
cgi_append_content(zDivNomenclatureSidebox,-1);
if (!strstr(zCSS,"disabledLinks"))
cgi_append_content(zSpanDisabledLinks,-1);
g.isConst = 1;
}
/*
** WEBPAGE: test_env
*/
void page_test_env(void){
|