aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/style/default.css2
-rw-r--r--static/style/git_browse.css39
2 files changed, 35 insertions, 6 deletions
diff --git a/static/style/default.css b/static/style/default.css
index 8c0cd7e..58c3011 100644
--- a/static/style/default.css
+++ b/static/style/default.css
@@ -8,6 +8,8 @@ body {
background-color: #E3E3E3; }
a {
text-decoration: none; }
+a:hover {
+ border-bottom: 1px solid blue; }
a.subtle {
color: black;
text-decoration: none; }
diff --git a/static/style/git_browse.css b/static/style/git_browse.css
index 44b884b..bf9974d 100644
--- a/static/style/git_browse.css
+++ b/static/style/git_browse.css
@@ -8,25 +8,52 @@ pre.large {
table.gitbrowser {
width: 100%;
- border-spacing: 4px;
+ border-spacing: 0px;
+ font-size: 11px;
}
table.gitbrowser tr {
width: 100%;
background-color: #EEEEEE;
}
-table.gitbrowser td {
- margin: 0px;
- margin-bottom: 2px;
-}
td.head {
font-weight: bold;
+ padding-left: 13px;
width: 130px;
overflow: hidden;
}
-
+td.tag {
+ font-weight: bold;
+ padding-left: 13px;
+ width: 130px;
+ overflow: hidden;
+}
+td.date {
+ font-style: italic;
+ width: 90px;
+ overflow: hidden;
+}
+td.author {
+ font-style: italic;
+ width: 100px;
+ overflow: hidden;
+}
+td.description {
+ overflow: hidden;
+}
+td.shorthash {
+ width: 60px;
+ overflow: hidden;
+ text-align: right;
+ font-family: courier;
+}
td.hash {
width: 100px;
overflow: hidden;
text-align: right;
font-family: courier;
}
+
+a.head {
+ color: green; }
+a.tag {
+ color: yellow; }