summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-10-07 17:22:48 +0200
committermsquare <msquare@notrademark.de>2016-10-07 17:22:48 +0200
commitc48335e702361eec3818a6b1021d443fee9037f5 (patch)
treece65c5ec1f7f86e5b10c31492c3551fe6a6ad26e /themes
parent6d97aa2d273464e3cb6703a0527793c52583d4cd (diff)
improve shift rendering
Diffstat (limited to 'themes')
-rw-r--r--themes/base.less33
1 files changed, 16 insertions, 17 deletions
diff --git a/themes/base.less b/themes/base.less
index 83602c3b..0a6d0d34 100644
--- a/themes/base.less
+++ b/themes/base.less
@@ -10,23 +10,22 @@ body {
color: @text-muted;
}
-#shifts {
- td {
- &.free {
- border: 1px solid @brand-danger;
- .bg-danger();
- }
- &.occupied {
- border: 1px solid @brand-success;
- .bg-success();
- }
- &.collides {
- border: 1px solid @brand-warning;
- .bg-warning();
- }
- &.own {
- border: 1px solid @gray-light;
- }
+#shifts.table {
+ td, th {
+ background-color: #f0f0f0;
+ }
+
+ .row-hour {
+ border-top-color: @gray-light;
+ }
+
+ td.shift {
+ height: 1px;
+ padding: 0px 5px 5px 0px;
+
+ .panel {
+ margin-bottom: 0px;
+ }
}
}