epgc.css
187 lines
| 1 | .epgc-calendar-wrapper *, .epgc-calendar-wrapper *::before, .epgc-calendar-wrapper *::after { |
| 2 | word-break: initial; |
| 3 | } |
| 4 | |
| 5 | .fc-view table { |
| 6 | padding:0; |
| 7 | margin:0; |
| 8 | } |
| 9 | |
| 10 | .fc-event { |
| 11 | cursor: pointer; |
| 12 | border:none; |
| 13 | } |
| 14 | |
| 15 | tr[data-tippy-content] { |
| 16 | cursor: pointer; |
| 17 | } |
| 18 | |
| 19 | .fc-button { |
| 20 | font-size:initial; |
| 21 | } |
| 22 | |
| 23 | .fc-toolbar h2 { |
| 24 | font-weight:normal; |
| 25 | font-size:larger; |
| 26 | } |
| 27 | |
| 28 | .fc-time-grid-container { |
| 29 | max-height:400px; |
| 30 | } |
| 31 | |
| 32 | .fc-widget-header { |
| 33 | font-size: initial; |
| 34 | } |
| 35 | |
| 36 | .fc-timeGridWeek-view .fc-widget-header { |
| 37 | font-size:small; |
| 38 | } |
| 39 | |
| 40 | .fc-timeGridWeek-view .fc-day-grid, .fc-timeGridWeek-view .fc-row.fc-widget-header { |
| 41 | overflow-y:scroll; |
| 42 | } |
| 43 | |
| 44 | .epgc-calendar-wrapper hr.fc-divider::after, |
| 45 | .epgc-calendar-wrapper hr.fc-divider::before, |
| 46 | .epgc-calendar-wrapper h2:before { |
| 47 | display:none; |
| 48 | } |
| 49 | |
| 50 | .epgc-calendar-wrapper hr.fc-divider { |
| 51 | border:1px solid gray; |
| 52 | border-left:none; |
| 53 | border-right:none; |
| 54 | height:0; |
| 55 | padding:0; |
| 56 | margin:0; |
| 57 | max-width:initial; |
| 58 | overflow:initial; |
| 59 | position: initial; |
| 60 | } |
| 61 | |
| 62 | .epgc-calendar-wrapper table { |
| 63 | overflow:initial; |
| 64 | } |
| 65 | |
| 66 | .epgc-calendar-wrapper a.fc-event { |
| 67 | text-decoration: none; |
| 68 | box-shadow:none; |
| 69 | color:white; |
| 70 | } |
| 71 | |
| 72 | .epgc-calendar-wrapper tr { |
| 73 | border:none; |
| 74 | } |
| 75 | |
| 76 | .fc-header.fc-widget-header, .fc-day-number, .fc-axis.fc-widget-content, .fc-week-number { |
| 77 | font-size: initial; |
| 78 | } |
| 79 | |
| 80 | .fc-content { |
| 81 | font-size: smaller; |
| 82 | } |
| 83 | |
| 84 | @media(max-width:500px) { |
| 85 | .fc-toolbar { |
| 86 | display:block; |
| 87 | text-align:center; |
| 88 | } |
| 89 | .fc-toolbar > div { |
| 90 | margin-bottom:1rem; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | |
| 95 | /* Start calendar filter styled checkboxes */ |
| 96 | .epgc-calendar-filter input[type=checkbox]:focus + label span, |
| 97 | .epgc-calendar-filter input[type=checkbox]:active + label span { |
| 98 | outline: 1px dashed black; |
| 99 | } |
| 100 | |
| 101 | .epgc-calendar-filter input[type=checkbox] { |
| 102 | opacity:0; |
| 103 | position:fixed; /* absolute makes the page scroll to top when checked */ |
| 104 | } |
| 105 | |
| 106 | .epgc-calendar-color { |
| 107 | width:1rem; |
| 108 | height:1rem; |
| 109 | padding:0 .2rem; |
| 110 | opacity:.4; |
| 111 | border-radius:.4rem; |
| 112 | } |
| 113 | |
| 114 | .epgc-calendar-filter input[type=checkbox]:checked + label span { |
| 115 | opacity:1; |
| 116 | } |
| 117 | |
| 118 | .epgc-calendar-filter input[type=checkbox] + label span:before { |
| 119 | content: "✔"; |
| 120 | line-height:1rem; |
| 121 | visibility:hidden; |
| 122 | } |
| 123 | |
| 124 | .epgc-calendar-filter input[type=checkbox]:checked + label span:before { |
| 125 | visibility: visible; |
| 126 | } |
| 127 | |
| 128 | .epgc-calendar-filter:first-child { |
| 129 | margin-bottom:1.5em; |
| 130 | } |
| 131 | |
| 132 | .epgc-calendar-filter:last-child { |
| 133 | margin-top:1.5em; |
| 134 | } |
| 135 | |
| 136 | .epgc-event-title { |
| 137 | font-size:large; |
| 138 | font-weight: 500; |
| 139 | } |
| 140 | |
| 141 | .epgc-popup-row-icon { |
| 142 | width:30px; |
| 143 | float:left; |
| 144 | } |
| 145 | |
| 146 | .epgc-event-title .epgc-popup-row-value { |
| 147 | margin-right:20px; |
| 148 | } |
| 149 | |
| 150 | .epgc-popup-row-value { |
| 151 | margin-left:30px; |
| 152 | } |
| 153 | |
| 154 | .epgc-popup-row { |
| 155 | clear: both; |
| 156 | margin-bottom:1rem; |
| 157 | } |
| 158 | |
| 159 | .epgc-popup-row ul, .epgc-popup-row li { |
| 160 | list-style: none; |
| 161 | padding:0; |
| 162 | margin:0; |
| 163 | } |
| 164 | |
| 165 | .epgc-popup-draghandle { |
| 166 | position: absolute; |
| 167 | right:5px; |
| 168 | top:5px; |
| 169 | cursor: move; |
| 170 | opacity: .4; |
| 171 | } |
| 172 | |
| 173 | .epgc-loading-el, .epgc-error-el { |
| 174 | position:absolute; |
| 175 | background-color: #fcf8e3; |
| 176 | padding:1rem; |
| 177 | left:0; |
| 178 | top:0; |
| 179 | opacity:.6; |
| 180 | z-index:1; |
| 181 | } |
| 182 | |
| 183 | .epgc-error-el { |
| 184 | background-color: red; |
| 185 | opacity: 1; |
| 186 | } |
| 187 |