Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | 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. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | default-css-cleanups |
| Files: | files | file ages | folders |
| SHA3-256: |
a040a5d24db8166a2e32c22a95359fad |
| User & Date: | wyoung 2020-11-05 22:34:06.000 |
Context
|
2020-11-05
| ||
| 23:15 | Added a parameter to style_footer() and renamed it to match its actual function (style_body_and_footer()) so we can add a CSS class to each page that indicates which major Fossil feature served the page, so we can have module-specific CSS. ... (check-in: ef5424b683 user: wyoung tags: default-css-cleanups) | |
| 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) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
872 873 874 875 876 877 878 |
@ </div>
}
@ <div class="content"><span id="debugMsg"></span>
cgi_destination(CGI_BODY);
if( sideboxUsed ){
| < < < < | < | 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 |
@ </div>
}
@ <div class="content"><span id="debugMsg"></span>
cgi_destination(CGI_BODY);
if( sideboxUsed ){
@ <div class="endContent"></div>
}
@ </div>
/* Put the footer at the bottom of the page. */
zFooter = skin_get("footer");
if( sqlite3_strlike("%</body>%", zFooter, 0)==0 ){
style_load_all_js_files();
}
if( g.thTrace ) Th_Trace("BEGIN_FOOTER<br />\n", -1);
Th_Render(zFooter);
if( g.thTrace ) Th_Trace("END_FOOTER<br />\n", -1);
|
| ︙ | ︙ |