diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-10-20 22:18:17 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-10-20 23:49:29 +0200 |
commit | 96002c8c8f1567ce9ca3b8a003371b06830f4270 (patch) | |
tree | 369943d9695d945b984542d87c57142a10e5942f /apps/calendar/css | |
parent | beb5d627793ffb72a957fc9ce5667a67a07cc981 (diff) | |
download | nextcloud-server-96002c8c8f1567ce9ca3b8a003371b06830f4270.tar.gz nextcloud-server-96002c8c8f1567ce9ca3b8a003371b06830f4270.zip |
Implement listview for fullcalendar
Diffstat (limited to 'apps/calendar/css')
-rw-r--r-- | apps/calendar/css/style.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/apps/calendar/css/style.css b/apps/calendar/css/style.css index 78d26bb99a3..e6d212ef532 100644 --- a/apps/calendar/css/style.css +++ b/apps/calendar/css/style.css @@ -55,3 +55,47 @@ button.category{margin:0 3px;} .calendar-colorpicker-color{display:inline-block;width:20px;height:20px;margin-right:2px;cursor:pointer;border:2px solid transparent;} .calendar-colorpicker-color.active{border:2px solid black;} + +.fc-list-table +{ + margin: 10px; + border-style: hidden; + border-width: 10px; + padding: 10px; + vertical-align: top; + width: 100%; +} +.fc-list-table tr:hover +{ + color: #0000FF; + background-color: #CCFFCC; +} + + +.fc-list-date +{ + margin: 16px; + white-space: nowrap; + text-align: left; + width: 100%; + background-color: #808080; + color: #FFFFFF; + font-weight: bold; + font-family: Arial, Helvetica, sans-serif; +} +.fc-list-time +{ + text-align: center; + white-space: nowrap; + width: 1%; +} + +.fc-list-event +{ + text-align: left; +} + +.fc-list-event .fc-event-title +{ + cursor: pointer; +} |