diff --git a/web/src/app/listing/component.html b/web/src/app/listing/component.html index 774e23a4..9a85332f 100644 --- a/web/src/app/listing/component.html +++ b/web/src/app/listing/component.html @@ -14,7 +14,7 @@
+ |
{{ getHours(period) }}
diff --git a/web/src/app/listing/section/component.scss b/web/src/app/listing/section/component.scss
index b8199724..f2ca0ded 100644
--- a/web/src/app/listing/section/component.scss
+++ b/web/src/app/listing/section/component.scss
@@ -36,14 +36,25 @@
white-space: nowrap;
}
-.period-time {
+.period-time-conflict {
font-size: 90%;
width: 6em;
+ color: rgb(112, 105, 105);
+ font-weight: 100;
}
-.period-day {
+
+.period-time-no-conflict {
+ font-size: 90%;
+ width: 6em;
+ color: #000;
font-weight: 400;
}
+.period-day {
+ font-weight: 100;
+}
+
+
div.conflict-note {
margin-left:0.4em;
display:inline;
|