summaryrefslogtreecommitdiffstats
path: root/scss/main.scss
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-01 09:56:32 -0400
committerDrew DeVault <sir@cmpwn.com>2018-10-01 09:56:32 -0400
commitd40fe4e8f008d10a445c49a5fca3e184469163c8 (patch)
tree69c069c02119802918d18cbfb840ff6217e26735 /scss/main.scss
parentb697b7e51c52579d45b8576514f9e3a4f19ccdad (diff)
Flesh out log view a bit
Fixes and adds style for tags, annotations, etc
Diffstat (limited to 'scss/main.scss')
-rw-r--r--scss/main.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/scss/main.scss b/scss/main.scss
index a8dc8e3..4a2a7cd 100644
--- a/scss/main.scss
+++ b/scss/main.scss
@@ -106,3 +106,27 @@
}
}
}
+
+.ref {
+ border-width: 1px;
+ border-style: solid;
+ padding: 0.2rem;
+
+ &.branch {
+ border-color: darken($info, 20);
+ background: $info;
+ color: $white;
+ }
+
+ &.tag {
+ border-color: darken($primary, 20);
+ background: $primary;
+ color: $white;
+ }
+
+ &.tag.annotated {
+ border-color: darken($success, 20);
+ background: $success;
+ color: $white;
+ }
+}