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