summaryrefslogtreecommitdiffabout
path: root/cgit.css
authorLars Hjemli <hjemli@gmail.com>2007-01-17 00:10:39 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-01-17 00:10:39 (UTC)
commit23734c5a2b607dca2d634cafdc63202a687f26d3 (patch) (side-by-side diff)
treea8c240e9299936ffad6dbab335175af51372f32c /cgit.css
parenta69061fdb7380d73715aeb3a0da6e91a24df90e4 (diff)
downloadcgit-23734c5a2b607dca2d634cafdc63202a687f26d3.zip
cgit-23734c5a2b607dca2d634cafdc63202a687f26d3.tar.gz
cgit-23734c5a2b607dca2d634cafdc63202a687f26d3.tar.bz2
Extend repo summary with tag list
Show all tags in the repo below the branch list. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.css') (more/less context) (show whitespace changes)
-rw-r--r--cgit.css8
1 files changed, 6 insertions, 2 deletions
diff --git a/cgit.css b/cgit.css
index 9112bfe..d94b1b7 100644
--- a/cgit.css
+++ b/cgit.css
@@ -1,134 +1,138 @@
body {
font-family: arial;
font-size: normal;
background: white;
padding: 0em;
margin: 0.5em 1em;
}
h2 {
- font-size: 100%;
+ font-size: 120%;
font-weight: bold;
- margin-bottom: 0.1em;
+ margin-bottom: 0.5em;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
table.list {
border: solid 1px black;
border-collapse: collapse;
border: solid 1px #aaa;
}
table.list tr {
background: white;
}
table.list tr:hover {
background: #eeb;
}
+table.list tr.nohover:hover {
+ background: white;
+}
table.list th {
font-weight: normal;
background: #ddd;
+ border-top: solid 1px #aaa;
border-bottom: solid 1px #aaa;
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;
}
div#header {
background-color: #ddd;
padding: 0.25em 0.25em 0.25em 0.5em;
font-size: 150%;
font-weight: bold;
border: solid 1px #aaa;
vertical-align: middle;
margin-bottom: 2em;
}
div#header img#logo {
float: right;
}
div#header input {
float: right;
margin: 0.25em 1em;
}
div#header a {
color: black;
}
div#content {
margin: 0.5em 0.5em;
}
div#blob {
border: solid 1px black;
}
div.error {
color: red;
font-weight: bold;
margin: 1em 2em;
}
div.ls-blob, div.ls-dir {
font-family: monospace;
}
div.ls-dir a {
font-weight: bold;
}
th.filesize, td.filesize {
text-align: right;
}
td.filesize {
font-family: monospace;
}
td.filemode {
font-family: monospace;
}
td.blob {
white-space: pre;
font-family: monospace;
background-color: white;
}
table.nowrap td {
white-space: nowrap;
}
table.commit-info {
border-collapse: collapse;
margin-top: 1.5em;
}
table.commit-info th {
text-align: left;
font-weight: normal;
padding: 0.1em 1em 0.1em 0.1em;
}
table.commit-info td {
font-weight: normal;
padding: 0.1em 1em 0.1em 0.1em;
}
div.commit-subject {
font-weight: bold;
font-size: 125%;
margin: 1.5em 0em 0.5em 0em;
padding: 0em;
}
div.commit-msg {
white-space: pre;
font-family: monospace;
}