Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Disentangled an incorrect intermingling of the "adunit" feature and the "content" div the begins the body area of each page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | default-css-cleanups |
| Files: | files | file ages | folders |
| SHA3-256: |
e7fe61c13d4e562c665e67b3545bf186 |
| User & Date: | wyoung 2020-11-05 22:32:47.224 |
Context
|
2020-11-05
| ||
| 22:34 | Moved a comment down in src/style.c and removed a part of it that seems to refer to inline CSS that's since moved to style.css. ... (check-in: a040a5d24d user: wyoung tags: default-css-cleanups) | |
| 22:32 | Disentangled an incorrect intermingling of the "adunit" feature and the "content" div the begins the body area of each page. ... (check-in: e7fe61c13d user: wyoung tags: default-css-cleanups) | |
| 22:16 | Assorted cleanups in skins/default/css.txt: reordered styles so like elements are grouped together, added separator comments to try and prevent this drift from happening again, and made the spacing consistent with the www/style.wiki rules. The goal is to make it easier to find rules when doing custom skin edits. ... (check-in: b8b15a3689 user: wyoung tags: default-css-cleanups) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
862 863 864 865 866 867 868 |
zAd = style_adunit_text(&mAdFlags);
if( (mAdFlags & ADUNIT_RIGHT_OK)!=0 ){
@ <div class="content adunit_right_container">
@ <div class="adunit_right">
cgi_append_content(zAd, -1);
@ </div>
| < | | | | | < | > | 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 |
zAd = style_adunit_text(&mAdFlags);
if( (mAdFlags & ADUNIT_RIGHT_OK)!=0 ){
@ <div class="content adunit_right_container">
@ <div class="adunit_right">
cgi_append_content(zAd, -1);
@ </div>
}else if( zAd ){
@ <div class="adunit_banner">
cgi_append_content(zAd, -1);
@ </div>
}
@ <div class="content"><span id="debugMsg"></span>
cgi_destination(CGI_BODY);
if( sideboxUsed ){
/* Put the footer at the bottom of the page.
** the additional clear/both is needed to extend the content
** part to the end of an optional sidebox.
*/
|
| ︙ | ︙ |