diff options
author | James Moger <james.moger@gitblit.com> | 2011-04-05 22:26:37 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-04-05 22:26:37 -0400 |
commit | 232890f03476b8bb231d17883eb0faff93ec5049 (patch) | |
tree | cf558e7d72095a2735b52cea516c26175279de27 /resources | |
parent | ce33be67c4c8c783713ad51c187e8296ed71f233 (diff) | |
download | gitblit-232890f03476b8bb231d17883eb0faff93ec5049.tar.gz gitblit-232890f03476b8bb231d17883eb0faff93ec5049.zip |
Simplified links some more. Added TicGit browser.
Diffstat (limited to 'resources')
-rw-r--r-- | resources/gitblit.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/resources/gitblit.css b/resources/gitblit.css index 032b26ee..d126a8ae 100644 --- a/resources/gitblit.css +++ b/resources/gitblit.css @@ -175,6 +175,32 @@ div.commit_message { border-width: 1px 0px 1px;
}
+div.bug_open {
+ padding: 2px;
+ background-color: #800000;
+ color: white;
+ text-align: center;
+}
+
+div.bug_resolved {
+ padding: 2px;
+ background-color: #008000;
+ color: white;
+ text-align: center;
+}
+
+div.bug_invalid {
+ padding: 2px;
+ background-color: gray;
+ text-align: center;
+}
+
+div.bug_hold {
+ padding: 2px;
+ background-color: orange;
+ text-align: center;
+}
+
a.list {
text-decoration: none;
color: #000000;
|