summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/css/theme0.css12
-rw-r--r--public/css/theme1.css12
-rw-r--r--themes/base.less11
3 files changed, 32 insertions, 3 deletions
diff --git a/public/css/theme0.css b/public/css/theme0.css
index 5c0680ec..ce759f40 100644
--- a/public/css/theme0.css
+++ b/public/css/theme0.css
@@ -6304,3 +6304,15 @@ body {
.footer a {
color: #777777;
}
+td.free {
+ background-color: #f2dede;
+}
+atd.free:hover {
+ background-color: #e4b9b9;
+}
+td.occupied {
+ background-color: #dff0d8;
+}
+atd.occupied:hover {
+ background-color: #c1e2b3;
+}
diff --git a/public/css/theme1.css b/public/css/theme1.css
index 1661a2fc..cfaf0ca4 100644
--- a/public/css/theme1.css
+++ b/public/css/theme1.css
@@ -6327,6 +6327,18 @@ body {
.footer a {
color: #888888;
}
+td.free {
+ background-color: #d9534f;
+}
+atd.free:hover {
+ background-color: #c9302c;
+}
+td.occupied {
+ background-color: #5cb85c;
+}
+atd.occupied:hover {
+ background-color: #449d44;
+}
.text-primary,
.text-primary:hover {
color: #428bca;
diff --git a/themes/base.less b/themes/base.less
index c474dc01..29a3796f 100644
--- a/themes/base.less
+++ b/themes/base.less
@@ -1,6 +1,3 @@
-//** Load fonts from this directory.
-@icon-font-path: "../fonts/";
-
@import "../vendor/bootstrap/less/bootstrap";
body {
@@ -10,3 +7,11 @@ body {
.footer a {
color: @text-muted;
}
+
+td.free {
+ .bg-danger();
+}
+
+td.occupied {
+ .bg-success();
+} \ No newline at end of file