diff options
author | Lars Hjemli | 2009-01-11 12:16:18 +0100 |
---|---|---|
committer | Lars Hjemli | 2009-01-11 12:16:18 +0100 |
commit | ef2dc552b298e5c65db8fbe5ff1c375e50d0f057 (patch) | |
tree | b3bbb563c58026c4fbf366424be08846bce3096e /cgit.css | |
parent | 5164be32778e2bca146e13904e5b9e79d0d6cca8 (diff) | |
download | cgit-ef2dc552b298e5c65db8fbe5ff1c375e50d0f057.tar.gz cgit-ef2dc552b298e5c65db8fbe5ff1c375e50d0f057.tar.bz2 cgit-ef2dc552b298e5c65db8fbe5ff1c375e50d0f057.zip |
ui-log: show name-decorations in log output
Commits are now decorated with a clickable 'label' for each ref pointing
at it, similar to how gitweb and gitk displays commit decorations.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -471,3 +471,27 @@ div.footer { | |||
471 | font-size: 80%; | 471 | font-size: 80%; |
472 | color: #ccc; | 472 | color: #ccc; |
473 | } | 473 | } |
474 | a.branch-deco { | ||
475 | margin: 0px 0.5em; | ||
476 | padding: 0px 0.25em; | ||
477 | background-color: #88ff88; | ||
478 | border: solid 1px #007700; | ||
479 | } | ||
480 | a.tag-deco { | ||
481 | margin: 0px 0.5em; | ||
482 | padding: 0px 0.25em; | ||
483 | background-color: #ffff88; | ||
484 | border: solid 1px #777700; | ||
485 | } | ||
486 | a.remote-deco { | ||
487 | margin: 0px 0.5em; | ||
488 | padding: 0px 0.25em; | ||
489 | background-color: #ccccff; | ||
490 | border: solid 1px #000077; | ||
491 | } | ||
492 | a.deco { | ||
493 | margin: 0px 0.5em; | ||
494 | padding: 0px 0.25em; | ||
495 | background-color: #ff8888; | ||
496 | border: solid 1px #770000; | ||
497 | } | ||