Differences From Artifact [84ae470bbb]:
- File src/style.c — part of check-in [153116f2d5] at 2012-11-09 08:52:59 on branch convert_before_commit — (committed to the wrong branch) Attempt to fix [fb3057f6ed]. Seems to work. (user: jan.nijtmans size: 27834) [more...]
To Artifact [c773a8b026]:
- File src/style.c — part of check-in [46fba0f1c6] at 2012-11-16 07:33:04 on branch no-nobr — The <nobr> tag is not valid xhtml. <p>All div.logo, div.status, div.section and div.divider parts of the html pages are not supposed to be line-wrapped. Some skins do that though the <nobr> tag, other do it by putting "white-space: nowrap;" in css. <p>This commit changes the skins to do the same using css in all skins. <p>With this change, the "timeline" and "finfo" pages become 100% html5 complient: validator.w3.org doesn't show any errors any more (just 3 warnings) (user: jan.nijtmans size: 27859) [more...]
| ︙ | ︙ | |||
426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
@ div.logo {
@ display: table-cell;
@ text-align: center;
@ vertical-align: bottom;
@ font-weight: bold;
@ color: #558195;
@ min-width: 200px;
@ }
@
@ /* The page title centered at the top of each page */
@ div.title {
@ display: table-cell;
@ font-size: 2em;
@ font-weight: bold;
| > | 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
@ div.logo {
@ display: table-cell;
@ text-align: center;
@ vertical-align: bottom;
@ font-weight: bold;
@ color: #558195;
@ min-width: 200px;
@ white-space: nowrap;
@ }
@
@ /* The page title centered at the top of each page */
@ div.title {
@ display: table-cell;
@ font-size: 2em;
@ font-weight: bold;
|
| ︙ | ︙ |