Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | corrected % values in default styles(missing second %) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | wolfgangFormat2CSS |
| Files: | files | file ages | folders |
| SHA1: |
7d88fac509e487b61ad54718c1d16a33 |
| User & Date: | Ratte 2010-09-11 06:38:52.000 |
Context
|
2010-09-11
| ||
| 13:11 | merged improved stat page from trunk and slightly optimized style.c ... (check-in: 7d08c20fa5 user: wolfgang tags: wolfgangFormat2CSS) | |
| 06:38 | corrected % values in default styles(missing second %) ... (check-in: 7d88fac509 user: Ratte tags: wolfgangFormat2CSS) | |
|
2010-09-10
| ||
| 20:19 | fixed many HTML-validator errors and moved more formats to CSS - tested on firefox and IE ... (check-in: d1305d0a7a user: wolfgang tags: wolfgangFormat2CSS) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
272 273 274 275 276 277 278 | @ display: table-cell; @ font-size: 2em; @ font-weight: bold; @ text-align: center; @ padding: 0 0 0 1em; @ color: #558195; @ vertical-align: bottom; | | | | 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
@ display: table-cell;
@ font-size: 2em;
@ font-weight: bold;
@ text-align: center;
@ padding: 0 0 0 1em;
@ color: #558195;
@ vertical-align: bottom;
@ width: 100%%;
@ }
@
@ /* The login status message in the top right-hand corner */
@ div.status {
@ display: table-cell;
@ text-align: right;
@ vertical-align: bottom;
@ color: #558195;
@ font-size: 0.8em;
@ font-weight: bold;
@ min-width: 200px;
@ white-space: nowrap;
@ }
@
@ /* The header across the top of the page */
@ div.header {
@ display: table;
@ width: 100%%;
@ }
@
@ /* The main menu bar that appears at the top of the page beneath
@ ** the header */
@ div.mainmenu {
@ padding: 5px 10px 5px 10px;
@ font-size: 0.9em;
|
| ︙ | ︙ | |||
516 517 518 519 520 521 522 |
@ text-decoration: line-through;
@ }
@
;
const char zTableBrowser[] =
@ /* the format for wiki errors */
@ table.browser {
| | | | 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 |
@ text-decoration: line-through;
@ }
@
;
const char zTableBrowser[] =
@ /* the format for wiki errors */
@ table.browser {
@ width: 100%%;
@ border: 0;
@ }
@
;
const char zTdBrowser[] =
@ /* the format for wiki errors */
@ td.browser {
@ width: 25%%;
@ vertical-align: top;
@ }
@
;
const char zUlBrowser[] =
@ /* the format for wiki errors */
@ ul.browser {
|
| ︙ | ︙ |