diff --git a/css/fullcalendar.scss b/css/fullcalendar.scss index f164e1bda0..ff047e4956 100644 --- a/css/fullcalendar.scss +++ b/css/fullcalendar.scss @@ -225,6 +225,50 @@ display: none; } } + + &--diagonal-lines { + background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0,0,0,.2) 5px, rgba(0,0,0,.2) 10px); + } + + &--horizontal-lines { + background-image: repeating-linear-gradient(to right, transparent, transparent 5px, rgba(0,0,0,.2) 5px, rgba(0,0,0,.2) 10px); + } + + &--vertical-lines { + background-image: repeating-linear-gradient(to bottom, transparent, transparent 5px, rgba(0,0,0,.2) 5px, rgba(0,0,0,.2) 10px); + } + + &--dots { + background-image: radial-gradient(circle, rgba(0,0,0,.2) 4px, transparent 4px); + background-size: 14px 14px; + } + + &--hexagons { + background-image: repeating-linear-gradient(45deg, + transparent 10%, + rgba(0, 0, 0, 0.2) 10%, + rgba(0, 0, 0, 0.2) 20%, + transparent 20%, + transparent 30%, + rgba(0, 0, 0, 0.2) 30%, + rgba(0, 0, 0, 0.2) 50%, + transparent 40%); + } + + &--triangles { + background-size: 15px 15px; + background-image: + linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.2) 50%), + linear-gradient(-45deg, transparent 50%, rgba(0, 0, 0, 0.2) 50%); + } + + &--checkered { + background-image: + linear-gradient(45deg, rgba(0, 0, 0, .2) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .2)), + linear-gradient(45deg, rgba(0, 0, 0, .2) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .2)); + background-size: 20px 20px; + background-position: 0 0, 10px 10px; + } } .fc-list-empty { diff --git a/src/components/AppNavigation/EditCalendarModal.vue b/src/components/AppNavigation/EditCalendarModal.vue index b09ac56b4a..8039fe35de 100644 --- a/src/components/AppNavigation/EditCalendarModal.vue +++ b/src/components/AppNavigation/EditCalendarModal.vue @@ -36,6 +36,15 @@ +
+ +
+ +
+