mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
Change global document layout
Use a document-wide table for the main layout Signed-off-by: Lars Hjemli <larsh@slaptop.hjemli.net>
This commit is contained in:
parent
4a9dea5c01
commit
8596cda71d
23
cgit.css
23
cgit.css
@ -3,7 +3,7 @@ body {
|
|||||||
font-size: normal;
|
font-size: normal;
|
||||||
background: white;
|
background: white;
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
margin: 0.5em 1em;
|
margin: 0em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -48,30 +48,33 @@ table.list td {
|
|||||||
img {
|
img {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
table#layout {
|
||||||
div#header {
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
td#header {
|
||||||
background-color: #ddd;
|
background-color: #ddd;
|
||||||
padding: 0.25em 0.25em 0.25em 0.5em;
|
padding: 0.25em 0.25em 0.25em 0.5em;
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border: solid 1px #aaa;
|
border-bottom: solid 1px #aaa;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin-bottom: 2em;
|
|
||||||
}
|
}
|
||||||
div#header img#logo {
|
td#header img#logo {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#header input {
|
td#header input {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 0.25em 1em;
|
margin: 0.25em 1em;
|
||||||
}
|
}
|
||||||
div#header a {
|
td#header a {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#content {
|
td#content {
|
||||||
margin: 0.5em 0.5em;
|
padding: 1em 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#blob {
|
div#blob {
|
||||||
|
@ -107,12 +107,13 @@ void cgit_print_docstart(char *title, struct cacheitem *item)
|
|||||||
|
|
||||||
void cgit_print_docend()
|
void cgit_print_docend()
|
||||||
{
|
{
|
||||||
|
html("</td></tr></table>");
|
||||||
html("</body>\n</html>\n");
|
html("</body>\n</html>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_print_pageheader(char *title, int show_search)
|
void cgit_print_pageheader(char *title, int show_search)
|
||||||
{
|
{
|
||||||
html("<div id='header'>");
|
html("<table id='layout'><tr><td id='header'>");
|
||||||
htmlf("<a href='%s'>", cgit_logo_link);
|
htmlf("<a href='%s'>", cgit_logo_link);
|
||||||
htmlf("<img id='logo' src='%s'/>\n", cgit_logo);
|
htmlf("<img id='logo' src='%s'/>\n", cgit_logo);
|
||||||
htmlf("</a>");
|
htmlf("</a>");
|
||||||
@ -135,5 +136,5 @@ void cgit_print_pageheader(char *title, int show_search)
|
|||||||
html_txt(title);
|
html_txt(title);
|
||||||
if (cgit_query_repo)
|
if (cgit_query_repo)
|
||||||
html("</a>");
|
html("</a>");
|
||||||
html("</div>");
|
html("</td></tr><tr><td id='content'>");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user