From 3a289eaae8d9f68be1ff90398e90295a3d3ceb3f Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 11 May 2017 11:12:14 -0400 Subject: [PATCH] adding hover effects to the year and month buttons in calendar view changing the border color to black when hovering over a month or year button on the calendar view page --- css/front.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/css/front.css b/css/front.css index 5df9713..49ccf8a 100755 --- a/css/front.css +++ b/css/front.css @@ -394,18 +394,22 @@ a.fc-time-grid-event.fc-v-event { } -.date-highlight{ - color: red; - font-weight: bold; -} + .month-nav, .year-nav{ display: inline-block; margin: 5px; - border: 1px solid black; + border: 1px solid lightgrey; padding: 3px 5px; } .month-nav:hover, .year-nav:hover{ cursor: pointer; + border: 1px solid black; + +} +.date-highlight{ + color: red; + font-weight: bold; + border: 1px solid black; } .current-date{ background: #f5822a; -- 2.17.1