summaryrefslogtreecommitdiffabout
authorLars Hjemli <larsh@slaptop.hjemli.net>2007-01-28 10:33:55 (UTC)
committer Lars Hjemli <larsh@slaptop.hjemli.net>2007-01-28 10:33:55 (UTC)
commit8596cda71d04cd49cb983aee7968d14cc58c030d (patch) (unidiff)
tree6f8053d21fecd718d3493fe665240dc7892d44d2
parent4a9dea5c0104471324f01663420685e45fe3b480 (diff)
downloadcgit-8596cda71d04cd49cb983aee7968d14cc58c030d.zip
cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.gz
cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.bz2
Change global document layout
Use a document-wide table for the main layout Signed-off-by: Lars Hjemli <larsh@slaptop.hjemli.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css23
-rw-r--r--ui-shared.c5
2 files changed, 16 insertions, 12 deletions
diff --git a/cgit.css b/cgit.css
index d2c0d0b..63acd78 100644
--- a/cgit.css
+++ b/cgit.css
@@ -5,3 +5,3 @@ body {
5 padding: 0em; 5 padding: 0em;
6 margin: 0.5em 1em; 6 margin: 0em;
7} 7}
@@ -50,4 +50,8 @@ img {
50} 50}
51 51table#layout {
52div#header { 52 width: 100%;
53 border-collapse: collapse;
54 margin: 0px;
55}
56td#header {
53 background-color: #ddd; 57 background-color: #ddd;
@@ -56,7 +60,6 @@ div#header {
56 font-weight: bold; 60 font-weight: bold;
57 border: solid 1px #aaa; 61 border-bottom: solid 1px #aaa;
58 vertical-align: middle; 62 vertical-align: middle;
59 margin-bottom: 2em;
60} 63}
61div#header img#logo { 64td#header img#logo {
62 float: right; 65 float: right;
@@ -64,3 +67,3 @@ div#header img#logo {
64 67
65div#header input { 68td#header input {
66 float: right; 69 float: right;
@@ -68,3 +71,3 @@ div#header input {
68} 71}
69div#header a { 72td#header a {
70 color: black; 73 color: black;
@@ -72,4 +75,4 @@ div#header a {
72 75
73div#content { 76td#content {
74 margin: 0.5em 0.5em; 77 padding: 1em 0.5em;
75} 78}
diff --git a/ui-shared.c b/ui-shared.c
index bebd3e0..6300516 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -109,2 +109,3 @@ void cgit_print_docend()
109{ 109{
110 html("</td></tr></table>");
110 html("</body>\n</html>\n"); 111 html("</body>\n</html>\n");
@@ -114,3 +115,3 @@ void cgit_print_pageheader(char *title, int show_search)
114{ 115{
115 html("<div id='header'>"); 116 html("<table id='layout'><tr><td id='header'>");
116 htmlf("<a href='%s'>", cgit_logo_link); 117 htmlf("<a href='%s'>", cgit_logo_link);
@@ -137,3 +138,3 @@ void cgit_print_pageheader(char *title, int show_search)
137 html("</a>"); 138 html("</a>");
138 html("</div>"); 139 html("</td></tr><tr><td id='content'>");
139} 140}