summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-05-11 22:29:37 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-05-11 22:29:37 (UTC)
commitf5af0beb6ab569d64950ca55a52a07923917ce81 (patch) (side-by-side diff)
tree5116ef68974fd94315e5b186c6e9eecb6b572f6e
parent9f48df63f6d8d9a8abcc02cd2f08293da7081520 (diff)
downloadcgit-f5af0beb6ab569d64950ca55a52a07923917ce81.zip
cgit-f5af0beb6ab569d64950ca55a52a07923917ce81.tar.gz
cgit-f5af0beb6ab569d64950ca55a52a07923917ce81.tar.bz2
css: fix bad rendering in Internet Explorer
The layout-tables used border-collapse:separate, which maked all pages look really bad in IE. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css9
1 files changed, 7 insertions, 2 deletions
diff --git a/cgit.css b/cgit.css
index 49cf2d1..cded981 100644
--- a/cgit.css
+++ b/cgit.css
@@ -1,32 +1,38 @@
body {
font-family: arial;
font-size: 11pt;
background: white;
+}
+
+body, table {
padding: 0em;
margin: 0em;
}
+table {
+ border-collapse: collapse;
+}
h2 {
font-size: 120%;
font-weight: bold;
margin-top: 0em;
margin-bottom: 0.25em;
}
h3 {
margin-top: 0em;
font-size: 100%;
font-weight: normal;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
table.list {
@@ -43,50 +49,49 @@ table.list tr:hover {
}
table.list tr.nohover:hover {
background: white;
}
table.list th {
font-weight: normal;
border-bottom: solid 1px #777;
padding: 0.1em 0.5em 0.1em 0.5em;
vertical-align: baseline;
}
table.list td {
border: none;
padding: 0.1em 0.5em 0.1em 0.5em;
}
img {
border: none;
}
table#layout {
width: 100%;
- border-collapse: separate;
- border-spacing: 0px;
+ border-collapse: collapse;
margin: 0px;
}
td#header, td#logo {
color: #666;
background-color: #ddd;
border-bottom: solid 1px #000;
}
td#header {
font-size: 150%;
font-weight: bold;
padding: 0.2em 0.5em;
vertical-align: text-bottom;
}
td#logo {
text-align: right;
vertical-align: middle;
padding-right: 0.5em;
}
td#crumb, td#search {
color: #ccc;