diff --git a/sass/cal.scss b/sass/cal.scss index a697644..ff454bc 100644 --- a/sass/cal.scss +++ b/sass/cal.scss @@ -84,6 +84,10 @@ // opacity so it'll "grey" out whatever the main text color is set to in future themes. opacity:.7; } + th.today{ + background: $uc-shortcal-today-bg; + color: $uc-shortcal-today-color; + } td { border-top-width:0; padding-top:0; diff --git a/sass/variables.scss b/sass/variables.scss index 77b72eb..67e7e57 100644 --- a/sass/variables.scss +++ b/sass/variables.scss @@ -182,7 +182,8 @@ $comment-top-border: #ccc !default; $comment-thread-odd: #f5f5f5 !default; - +$uc-shortcal-today-bg: #ccc !default; +$uc-shortcal-today-color: #000 !default; diff --git a/style.css b/style.css index db2d32d..5fa9d22 100644 --- a/style.css +++ b/style.css @@ -7779,6 +7779,10 @@ q:before, table q:after { font-weight: normal; opacity: .7; } +#events-table table tbody th.today { + background: #cccccc; + color: black; +} #events-table table tbody td { border-top-width: 0; padding-top: 0;