| | @@ -337,10 +337,11 @@ |
| 337 | 337 | @ padding: 1px 1px 1px 1px; |
| 338 | 338 | @ font-size: 1.2em; |
| 339 | 339 | @ font-weight: bold; |
| 340 | 340 | @ background-color: #558195; |
| 341 | 341 | @ color: white; |
| 342 | +@ white-space: nowrap; |
| 342 | 343 | @ } |
| 343 | 344 | @ |
| 344 | 345 | @ /* The "Date" that occurs on the left hand side of timelines */ |
| 345 | 346 | @ div.divider { |
| 346 | 347 | @ background: #a1c4d4; |
| | @@ -400,10 +401,17 @@ |
| 400 | 401 | @ td.timelineComment { |
| 401 | 402 | @ valign: top; |
| 402 | 403 | @ text-align: left; |
| 403 | 404 | @ } |
| 404 | 405 | ; |
| 406 | +const char zTdTimelineLeafDsp[] = |
| 407 | +@ /* The leaf description in timeline tables */ |
| 408 | +@ div.timelineLeafDsp { |
| 409 | +@ font-weight: bold; |
| 410 | +@ display: inline; |
| 411 | +@ } |
| 412 | +; |
| 405 | 413 | |
| 406 | 414 | /* |
| 407 | 415 | ** WEBPAGE: style.css |
| 408 | 416 | */ |
| 409 | 417 | void page_style_css(void){ |
| | @@ -418,10 +426,12 @@ |
| 418 | 426 | cgi_append_content(zTdTimelineTimeStampCell,-1); |
| 419 | 427 | if (!strstr(zCSS,"timelineOmitted")) |
| 420 | 428 | cgi_append_content(zTdTimelineOmitted,-1); |
| 421 | 429 | if (!strstr(zCSS,"timelineComment")) |
| 422 | 430 | cgi_append_content(zTdTimelineComment,-1); |
| 431 | + if (!strstr(zCSS,"timelineLeafDsp")) |
| 432 | + cgi_append_content(zTdTimelineLeafDsp,-1); |
| 423 | 433 | g.isConst = 1; |
| 424 | 434 | } |
| 425 | 435 | |
| 426 | 436 | /* |
| 427 | 437 | ** WEBPAGE: test_env |
| 428 | 438 | |