diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base.less | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/themes/base.less b/themes/base.less index cc7956bb..6832fb1a 100644 --- a/themes/base.less +++ b/themes/base.less @@ -10,12 +10,24 @@ body { color: @text-muted; } -td.free { - .bg-danger(); -} - -td.occupied { - .bg-success(); +#shifts { + td { + &.free { + border: 1px solid @gray-light; + .bg-danger(); + } + &.occupied { + border: 1px solid @gray-light; + .bg-success(); + } + &.collides { + border: 1px solid @gray-light; + .bg-warning(); + } + &.own { + border: 1px solid @gray-light; + } + } } .space-top { |