Skip to content

Commit a4c2e28

Browse files
committed
feat: add red underline for deadlines in calendar
1 parent 510a363 commit a4c2e28

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

_includes/calendar.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
var content = "";
1414

1515
for (var i in e.events) {
16-
var icon_html = "";
1716
var headline_color = "";
1817
var break_html = '<hr>';
1918

@@ -42,7 +41,7 @@
4241
content +=
4342
'<div class="event-tooltip-content">' +
4443
'<div class="event-name ' + headline_color + '">' +
45-
'<b>' + e.events[i].name + '</b> &nbsp;' + icon_html +
44+
'<b>' + e.events[i].name + '</b>' +
4645
'</div>' +
4746
'<div class="event-location">' +
4847
location_html +

static/css/calendar.css

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
background-color: #ccc;
66
border-radius: 5px;
77
}
8+
9+
.deadline-text {
10+
text-decoration: underline;
11+
text-decoration-color: red;
12+
}
13+
814
@media only screen and (max-width: 550px) {
915
#calendar-page {
1016
display: inline;

0 commit comments

Comments
 (0)