Version Description
- Changed: create_function is deprecated in PHP 7.2
- Changed: Sort organizers and venues by title not slug in post type archive
- Improved: Styles of Gutenberg block popup
- Fixed: Styles of free and premium versions synchronized
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.1.14 |
Comparing to | |
See all releases |
Code changes from version 1.1.13 to 1.1.14
- css/calendar.css +238 -212
- css/calendar_grey.css +259 -235
- css/ecwd_block.css +9 -3
- css/style.css +10 -5
- ecwd.php +2 -2
- includes/ecwd-cpt-class.php +6 -1
- readme.txt +7 -1
- views/admin/ecwd-shortcode-iframe.php +59 -9
- views/widgets.php +5 -3
css/calendar.css
CHANGED
@@ -1,321 +1,347 @@
|
|
1 |
-
/*
|
2 |
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
}
|
8 |
|
9 |
-
.ecwd_theme_calendar
|
10 |
-
|
|
|
11 |
}
|
12 |
-
|
13 |
-
|
|
|
14 |
}
|
15 |
-
|
16 |
-
|
|
|
17 |
}
|
18 |
|
19 |
-
.ecwd_theme_calendar
|
20 |
-
|
21 |
-
background: #FFFFFF !important;
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
.ecwd_theme_calendar .
|
26 |
-
|
27 |
-
text-shadow: 0px 1px 1px #444444;
|
28 |
-
background:#10738B;
|
29 |
}
|
30 |
|
31 |
-
.ecwd_theme_calendar .
|
32 |
-
|
33 |
-
background:#10738B;
|
34 |
}
|
35 |
|
36 |
-
.ecwd_theme_calendar .
|
37 |
-
|
38 |
-
border-bottom: 1px solid rgba(0,0,0,0.2);
|
39 |
-
color:#10738B;
|
40 |
}
|
41 |
|
42 |
-
.ecwd_theme_calendar .
|
43 |
-
|
44 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7D9AC0", endColorstr="#647b9a");
|
45 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#7D9AC0), to(#647b9a));
|
46 |
-
background: -moz-linear-gradient(top, #7D9AC0, #647b9a);
|
47 |
-
border:1px solid #a5b9d3;
|
48 |
-
color:#fdfefe;
|
49 |
-
font-size: 1.3em;
|
50 |
}
|
51 |
|
52 |
-
.ecwd_theme_calendar .
|
53 |
-
|
54 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#647b9a", endColorstr="#7D9AC0");
|
55 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#647b9a), to(#7D9AC0));
|
56 |
-
background: -moz-linear-gradient(top, #647b9a, #7D9AC0);
|
57 |
}
|
58 |
|
59 |
-
.ecwd_theme_calendar .
|
60 |
-
|
61 |
-
|
62 |
-
height:3.25em;
|
63 |
-
color:#fdfefe;
|
64 |
-
text-shadow: 0 1px 1px rgba(1,2,2,.3);
|
65 |
|
|
|
|
|
66 |
}
|
67 |
|
68 |
-
.ecwd_theme_calendar .
|
69 |
-
|
|
|
70 |
|
|
|
|
|
|
|
71 |
}
|
72 |
|
73 |
-
.
|
74 |
-
|
75 |
-
.ecwd_theme_calendar .event-organizers a,
|
76 |
-
.ecwd_theme_calendar .event-venue a,
|
77 |
-
.ecwd_theme_calendar .event-detalis span,
|
78 |
-
.ecwd_theme_calendar .event-detalis a{
|
79 |
-
color: #010101;
|
80 |
-
word-break: break-word;
|
81 |
}
|
82 |
|
83 |
-
.ecwd_theme_calendar
|
|
|
|
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
background: -moz-linear-gradient(top, #7D9AC0, #647b9a);
|
89 |
-
outline:none;
|
90 |
-
text-shadow: 0 1px 1px rgba(1,2,2,.3);
|
91 |
-
-webkit-box-shadow: 0 1px 2px rgba(1,2,2,.2);
|
92 |
-
-moz-box-shadow: 0 1px 2px rgba(1,2,2,.2);
|
93 |
-
box-shadow: 0 1px 2px rgba(1,2,2,.2);
|
94 |
}
|
95 |
-
|
96 |
-
|
|
|
97 |
}
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#7D9AC0), to(#718bad));
|
102 |
-
background: -moz-linear-gradient(top, #7D9AC0, #718bad);
|
103 |
}
|
104 |
|
105 |
-
.ecwd_theme_calendar
|
106 |
-
|
107 |
-
font-size: 0.6em;
|
108 |
-
position: absolute;
|
109 |
-
right: 7px;
|
110 |
-
text-decoration: underline;
|
111 |
-
top: 3px;
|
112 |
}
|
113 |
|
114 |
-
.ecwd_theme_calendar
|
115 |
-
|
116 |
-
-webkit-box-shadow: 2px 3px 8px rgba(1,2,2,.2);
|
117 |
-
-moz-box-shadow: 2px 3px 8px rgba(1,2,2,.2);
|
118 |
-
box-shadow: 2px 3px 8px rgba(1,2,2,.2);
|
119 |
-
-moz-border-radius: 4px;
|
120 |
-
-webkit-border-radius: 4px;
|
121 |
-
border-radius: 4px;
|
122 |
-
padding:5px 5px 10px 5px;
|
123 |
}
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
}
|
128 |
-
@media only screen and (max-width: 768px){
|
129 |
|
130 |
-
|
|
|
|
|
131 |
|
132 |
-
|
133 |
-
|
|
|
134 |
|
135 |
-
|
136 |
-
|
137 |
-
}
|
138 |
}
|
139 |
|
|
|
|
|
|
|
140 |
|
141 |
-
.ecwd_theme_calendar .
|
142 |
-
|
143 |
-
border: 1px solid #D5DCE2;
|
144 |
-
margin-bottom:1px !important;
|
145 |
-
background: #F9F9F9;
|
146 |
-
color: #676767;
|
147 |
}
|
148 |
|
149 |
-
.ecwd_theme_calendar .
|
150 |
-
|
151 |
-
border: 1px solid #D5DCE2;
|
152 |
-
margin-bottom: 1px;
|
153 |
-
background: #F9F9F9;
|
154 |
}
|
155 |
-
|
156 |
-
|
|
|
157 |
}
|
158 |
|
159 |
-
.ecwd_theme_calendar .
|
160 |
-
|
161 |
-
text-indent: 0;
|
162 |
-
margin: 0 auto !important;
|
163 |
-
border-radius: 0;
|
164 |
-
border-bottom: 1px solid #CCC;
|
165 |
-
background: #ffffff !important;
|
166 |
-
padding:10px 0 !important;
|
167 |
-
color: #676767 !important;
|
168 |
}
|
169 |
|
170 |
-
.ecwd_theme_calendar
|
171 |
-
|
172 |
-
|
173 |
}
|
174 |
|
175 |
-
.ecwd_theme_calendar
|
176 |
-
|
177 |
}
|
178 |
|
179 |
-
.ecwd_theme_calendar .
|
180 |
-
|
181 |
-
background:#585858;
|
182 |
}
|
183 |
|
|
|
|
|
|
|
184 |
|
|
|
|
|
|
|
185 |
|
186 |
-
.ecwd_theme_calendar .
|
187 |
-
|
188 |
}
|
189 |
-
|
190 |
-
|
|
|
191 |
}
|
192 |
|
|
|
|
|
|
|
193 |
|
|
|
|
|
|
|
194 |
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
overflow:hidden;
|
199 |
-
}*/
|
200 |
|
|
|
|
|
|
|
201 |
|
|
|
|
|
|
|
202 |
|
203 |
-
.ecwd_theme_calendar .
|
204 |
-
|
205 |
-
color: #fff;
|
206 |
-
font-size: 23px;
|
207 |
-
background:#10738B;
|
208 |
}
|
209 |
-
|
210 |
-
.ecwd_theme_calendar .
|
211 |
-
|
212 |
-
|
213 |
-
border: 1px solid #E5E4E4 !important;
|
214 |
}
|
215 |
|
216 |
-
.ecwd_theme_calendar .
|
217 |
-
|
218 |
-
border-right: 1px solid #87B5C0;
|
219 |
}
|
220 |
-
|
221 |
-
|
|
|
222 |
}
|
223 |
|
|
|
|
|
|
|
224 |
|
225 |
-
.ecwd_theme_calendar .
|
226 |
-
|
|
|
227 |
}
|
228 |
|
|
|
|
|
|
|
229 |
|
|
|
|
|
|
|
230 |
|
231 |
-
.ecwd_theme_calendar .
|
232 |
-
|
233 |
-
font-size: 17px;
|
234 |
}
|
235 |
|
236 |
-
.ecwd_theme_calendar .
|
237 |
-
|
238 |
-
border-left:1px solid #91CEDF;
|
239 |
-
border-right:1px solid #235F71;
|
240 |
}
|
241 |
-
|
242 |
-
|
243 |
-
|
|
|
244 |
}
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
font-size: 13px;
|
249 |
-
line-height: 24px;
|
250 |
-
margin-top: -8px;
|
251 |
-
}
|
252 |
}
|
253 |
|
254 |
-
.ecwd_theme_calendar .
|
255 |
-
|
256 |
}
|
257 |
|
258 |
-
.ecwd_theme_calendar .
|
259 |
-
|
260 |
}
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
|
263 |
-
.ecwd_theme_calendar .
|
264 |
-
|
265 |
-
color:#5C5C5C;
|
266 |
}
|
267 |
|
268 |
-
|
|
|
|
|
269 |
|
270 |
-
.ecwd_theme_calendar .ecwd-
|
271 |
-
|
272 |
-
background: #F5F5F5;
|
273 |
}
|
274 |
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
display:none;
|
279 |
-
padding-top: 6px;
|
280 |
-
}
|
281 |
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
|
|
|
|
|
286 |
}
|
287 |
-
/*#############LIST,WEEK VIEW###############*/
|
288 |
|
289 |
-
.ecwd_theme_calendar .
|
290 |
-
|
291 |
-
.ecwd_theme_calendar .day4-event-list .ecwd-week-date,
|
292 |
-
.ecwd_theme_calendar .week-event-list .ecwd-week-date{
|
293 |
-
background: #10738B;
|
294 |
}
|
295 |
|
296 |
-
.ecwd_theme_calendar .
|
297 |
-
|
298 |
}
|
299 |
-
|
300 |
-
.ecwd_theme_calendar ul.
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
}
|
307 |
|
308 |
-
.ecwd_theme_calendar .ecwd-pagination .
|
309 |
-
|
310 |
-
background: #10738B;
|
311 |
}
|
312 |
|
313 |
-
.ecwd_theme_calendar .ecwd-
|
314 |
-
|
315 |
-
background: #10738B;
|
316 |
-
color: #ffffff;
|
317 |
}
|
318 |
|
319 |
-
.ecwd_theme_calendar .
|
320 |
-
|
321 |
}
|
1 |
+
/*ecwd_11.ecwd_theme_4 => .ecwd_theme_calendar*/
|
2 |
|
3 |
|
4 |
+
|
5 |
+
.ecwd_theme_calendar:not(.calendar_widget_content) {
|
6 |
+
width: 100% !important;
|
7 |
}
|
8 |
|
9 |
+
.ecwd_theme_calendar .calendar-head {
|
10 |
+
background: #168fb5 !important;
|
11 |
+
border: 1px solid #91CEDF;
|
12 |
}
|
13 |
+
|
14 |
+
.ecwd_theme_calendar table.cal_blue.mini td ul.events li {
|
15 |
+
background: #168fb5;
|
16 |
}
|
17 |
+
|
18 |
+
.ecwd_theme_calendar .calendar-head .previous {
|
19 |
+
border-right: 1px solid #44a5c3 !important;
|
20 |
}
|
21 |
|
22 |
+
.ecwd_theme_calendar .calendar-head .next {
|
23 |
+
border-left: 1px solid #44a5c3 !important;
|
|
|
24 |
}
|
25 |
|
26 |
+
.ecwd_theme_calendar .calendar-head .current-month {
|
27 |
+
border-left: 1px solid #44a5c3 !important;
|
28 |
+
border-right: 1px solid #44a5c3 !important;
|
29 |
+
}
|
30 |
|
31 |
+
.ecwd_theme_calendar .calendar-head .next a, .ecwd_theme_calendar .calendar-head .next a {
|
32 |
+
color: #ffffff !important;
|
|
|
|
|
33 |
}
|
34 |
|
35 |
+
.ecwd_theme_calendar .calendar-head .next a, .ecwd_theme_calendar .calendar-head .previous a {
|
36 |
+
color: #ffffff !important;
|
|
|
37 |
}
|
38 |
|
39 |
+
.ecwd_theme_calendar .current-month a {
|
40 |
+
color: #ffffff !important;
|
|
|
|
|
41 |
}
|
42 |
|
43 |
+
.ecwd_theme_calendar .calendar-head .next a, .ecwd_theme_calendar .calendar-head .previous a {
|
44 |
+
font-size: 18px !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
|
47 |
+
.ecwd_theme_calendar .calendar-head .current-month {
|
48 |
+
color: #ffffff !important;
|
|
|
|
|
|
|
49 |
}
|
50 |
|
51 |
+
.ecwd_theme_calendar .calendar-head .current-month {
|
52 |
+
font-size: 28px !important;
|
53 |
+
}
|
|
|
|
|
|
|
54 |
|
55 |
+
.ecwd_theme_calendar .current-month a {
|
56 |
+
font-size: 28px !important;
|
57 |
}
|
58 |
|
59 |
+
.ecwd_theme_calendar .calendar-head .current-month div {
|
60 |
+
color: #ffffff !important;
|
61 |
+
}
|
62 |
|
63 |
+
.ecwd_theme_calendar .calendar-head .current-month div {
|
64 |
+
font-size: 16px !important;
|
65 |
+
line-height: 16px !important;
|
66 |
}
|
67 |
|
68 |
+
.ecwd_theme_calendar .cal_tabs_blue .filter-container ul {
|
69 |
+
background-color: #10738B !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
}
|
71 |
|
72 |
+
.ecwd_theme_calendar .cal_tabs_blue .filter-container ul li a, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-left {
|
73 |
+
background-color: #10738B !important;
|
74 |
+
}
|
75 |
|
76 |
+
.ecwd_theme_calendar .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-left {
|
77 |
+
border-left: 1px solid #91CEDF !important;
|
78 |
+
border-right: 1px solid #91CEDF !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
+
|
81 |
+
.ecwd_theme_calendar .cal_tabs_blue .filter-container ul li a, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-left {
|
82 |
+
color: #ffffff !important;
|
83 |
}
|
84 |
+
|
85 |
+
.ecwd_theme_calendar .cal_tabs_blue .filter-container ul li a, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar .ecwd_calendar .filter-arrow-left {
|
86 |
+
font-size: 16px !important;
|
|
|
|
|
87 |
}
|
88 |
|
89 |
+
.ecwd_theme_calendar .cal_tabs_blue ul li.ecwd-selected-mode a {
|
90 |
+
background-color: #ffffff !important;
|
|
|
|
|
|
|
|
|
|
|
91 |
}
|
92 |
|
93 |
+
.ecwd_theme_calendar .cal_tabs_blue ul li.ecwd-selected-mode a {
|
94 |
+
color: #10738B !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
+
|
97 |
+
.ecwd_theme_calendar .ecwd-search button, .ecwd_theme_calendar .ecwd-search button:hover {
|
98 |
+
background: #10738B !important;
|
99 |
}
|
|
|
100 |
|
101 |
+
.ecwd_theme_calendar .ecwd-search-submit .fa, .ecwd_theme_calendar .ecwd-search-submit .fa:hover {
|
102 |
+
color: #ffffff !important;
|
103 |
+
}
|
104 |
|
105 |
+
.ecwd_theme_calendar .ecwd_show_filters_top {
|
106 |
+
background-color: #10738B !important;
|
107 |
+
}
|
108 |
|
109 |
+
.ecwd_theme_calendar .ecwd_show_filters_left {
|
110 |
+
background-color: #ffffff !important;
|
|
|
111 |
}
|
112 |
|
113 |
+
.ecwd_theme_calendar .ecwd_show_filters_top {
|
114 |
+
color: #ffffff !important;
|
115 |
+
}
|
116 |
|
117 |
+
.ecwd_theme_calendar .ecwd_show_filters_top span {
|
118 |
+
color: #ffffff !important;
|
|
|
|
|
|
|
|
|
119 |
}
|
120 |
|
121 |
+
.ecwd_theme_calendar .ecwd_show_filters_left {
|
122 |
+
color: #10738B !important;
|
|
|
|
|
|
|
123 |
}
|
124 |
+
|
125 |
+
.ecwd_theme_calendar .ecwd_show_filters_left span {
|
126 |
+
color: #10738B !important;
|
127 |
}
|
128 |
|
129 |
+
.ecwd_theme_calendar .ecwd_filters .ecwd_filter_heading {
|
130 |
+
background-color: #ECECEC !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
}
|
132 |
|
133 |
+
.ecwd_theme_calendar .ecwd_filters .ecwd_filter_item {
|
134 |
+
border: 1px solid #ffffff !important;
|
135 |
+
border-top: 0 !important;
|
136 |
}
|
137 |
|
138 |
+
.ecwd_theme_calendar .ecwd_filter_item .ecwd_filter_heading span:after {
|
139 |
+
border-color: transparent transparent transparent #10738B !important;
|
140 |
}
|
141 |
|
142 |
+
.ecwd_theme_calendar .ecwd_filter_item .ecwd_filter_heading.open span:after {
|
143 |
+
border-color: #10738B transparent transparent transparent !important;
|
|
|
144 |
}
|
145 |
|
146 |
+
.ecwd_theme_calendar .ecwd_filters .ecwd_filter_heading {
|
147 |
+
color: #10738B !important;
|
148 |
+
}
|
149 |
|
150 |
+
.ecwd_theme_calendar .ecwd_filters .ecwd_filter_heading {
|
151 |
+
font-size: 16px !important;
|
152 |
+
}
|
153 |
|
154 |
+
.ecwd_theme_calendar .ecwd_reset_filters span {
|
155 |
+
color: #10738B !important;
|
156 |
}
|
157 |
+
|
158 |
+
.ecwd_theme_calendar .ecwd_reset_filters span {
|
159 |
+
font-size: 15px !important;
|
160 |
}
|
161 |
|
162 |
+
.ecwd_theme_calendar .ecwd_filter_checkboxes ul li {
|
163 |
+
background-color: #ffffff !important;
|
164 |
+
}
|
165 |
|
166 |
+
.ecwd_theme_calendar .ecwd_filter_checkboxes ul li {
|
167 |
+
border-color: #DEE3E8 !important;
|
168 |
+
}
|
169 |
|
170 |
+
.ecwd_theme_calendar .ecwd_filter_checkboxes ul li span {
|
171 |
+
color: #6E6E6E !important;
|
172 |
+
}
|
|
|
|
|
173 |
|
174 |
+
.ecwd_theme_calendar .ecwd_filter_checkboxes ul li span {
|
175 |
+
font-size: 15px !important;
|
176 |
+
}
|
177 |
|
178 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .weekend-heading {
|
179 |
+
background: #F9F9F9 !important;
|
180 |
+
}
|
181 |
|
182 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .weekend-heading {
|
183 |
+
border: 1px solid #B6B6B6 !important;
|
|
|
|
|
|
|
184 |
}
|
185 |
+
|
186 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .weekend-heading {
|
187 |
+
color: #585858 !important;
|
188 |
+
font-size: 17px !important;
|
|
|
189 |
}
|
190 |
|
191 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .weekend-heading {
|
192 |
+
font-size: 17px !important;
|
|
|
193 |
}
|
194 |
+
|
195 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date {
|
196 |
+
background: #ffffff !important;
|
197 |
}
|
198 |
|
199 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date {
|
200 |
+
border: 1px solid #B6B6B6 !important;
|
201 |
+
}
|
202 |
|
203 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date {
|
204 |
+
color: #5C5C5C !important;
|
205 |
+
font-size: 14px !important;
|
206 |
}
|
207 |
|
208 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date {
|
209 |
+
font-size: 14px !important;
|
210 |
+
}
|
211 |
|
212 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .weekend {
|
213 |
+
background: #EDEDED !important;
|
214 |
+
}
|
215 |
|
216 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-without-date {
|
217 |
+
background: #F9F9F9 !important;
|
|
|
218 |
}
|
219 |
|
220 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date .day-number {
|
221 |
+
background: #E0E0E0 !important;
|
|
|
|
|
222 |
}
|
223 |
+
|
224 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date .day-number {
|
225 |
+
color: #5C5C5C !important;
|
226 |
+
font-size: 14px !important;
|
227 |
}
|
228 |
|
229 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .day-with-date {
|
230 |
+
font-size: 14px !important;
|
|
|
|
|
|
|
|
|
231 |
}
|
232 |
|
233 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .current-day, .ecwd_theme_calendar table.cal_blue.mini .current-day {
|
234 |
+
background: #ffffff !important;
|
235 |
}
|
236 |
|
237 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .current-day {
|
238 |
+
color: #ffffff !important;
|
239 |
}
|
240 |
|
241 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .current-day .day-number, .ecwd_theme_calendar table.cal_blue.mini .current-day {
|
242 |
+
background: #0071A0 !important;
|
243 |
+
}
|
244 |
+
|
245 |
+
.ecwd_theme_calendar table.cal_blue.ecwd_calendar_container .current-day .day-number {
|
246 |
+
color: #ffffff !important;
|
247 |
+
}
|
248 |
+
|
249 |
+
.ecwd_theme_calendar .cal_blue.ecwd_calendar_container .events a, .ecwd_theme_calendar .cal_blue.ecwd_calendar_container .events span.ecwd_open_event_popup {
|
250 |
+
font-size: 14px !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
.ecwd_theme_calendar ul.ecwd_list li .event-main-content h3 a, .ecwd_theme_calendar ul.ecwd_list li .event-main-content h3 span.ecwd_open_event_popup {
|
254 |
+
font-size: 14px !important;
|
255 |
+
}
|
256 |
+
|
257 |
+
.ecwd_theme_calendar ul.week-event-list li .event-main-content h3 a, .ecwd_theme_calendar ul.week-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
258 |
+
font-size: 14px !important;
|
259 |
+
}
|
260 |
+
|
261 |
+
.ecwd_theme_calendar ul.day-event-list li .event-main-content h3 a, .ecwd_theme_calendar ul.day-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
262 |
+
font-size: 14px !important;
|
263 |
+
}
|
264 |
+
|
265 |
+
.ecwd_theme_calendar ul.day4-event-list li .event-main-content h3 a, .ecwd_theme_calendar ul.day4-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
266 |
+
font-size: 14px !important;
|
267 |
+
}
|
268 |
+
|
269 |
+
.ecwd_theme_calendar .ecwd_map_event a, .ecwd_theme_calendar .ecwd_map_event span.ecwd_open_event_popup {
|
270 |
+
font-size: 14px !important;
|
271 |
+
}
|
272 |
+
|
273 |
+
.ecwd_theme_calendar .ecwd-poster-item h2 a, .ecwd_theme_calendar .ecwd-poster-item h2 span.ecwd_open_event_popup {
|
274 |
+
font-size: 14px !important;
|
275 |
+
}
|
276 |
|
277 |
+
.ecwd_theme_calendar div.ecwd-page-full table.cal_blue div.event-details, .ecwd_theme_calendar .ecwd-poster-board .ecwd-poster-item .ecwd-event-content {
|
278 |
+
background: #ffffff !important;
|
|
|
279 |
}
|
280 |
|
281 |
+
.ecwd_theme_calendar div.ecwd-event-arrow:before {
|
282 |
+
border-right: solid #ffffff !important;
|
283 |
+
}
|
284 |
|
285 |
+
.ecwd_theme_calendar div.ecwd-event-arrow-right:before {
|
286 |
+
border-left: solid #ffffff !important;
|
|
|
287 |
}
|
288 |
|
289 |
+
.ecwd_theme_calendar div.ecwd-page-full ul.ecwd_list li, .ecwd_theme_calendar ul.ecwd_list li .event-main-content {
|
290 |
+
background: #ffffff !important;
|
291 |
+
}
|
|
|
|
|
|
|
292 |
|
293 |
+
.ecwd_theme_calendar .event-main-content, .ecwd_theme_calendar .ecwd-widget-mini .event-container, .ecwd_theme_calendar.ecwd-widget-mini .ecwd_list .event-main-content {
|
294 |
+
background: #ffffff !important;
|
295 |
+
}
|
296 |
|
297 |
+
.ecwd_theme_calendar div.ecwd-page-full table.cal_blue div.event-details, .ecwd_theme_calendar .ecwd-poster-board .ecwd-poster-item .ecwd-event-content {
|
298 |
+
border: 1px solid #bfbfbf !important;
|
299 |
}
|
|
|
300 |
|
301 |
+
.ecwd_theme_calendar ul.ecwd_list li {
|
302 |
+
border: 1px solid #bfbfbf !important;
|
|
|
|
|
|
|
303 |
}
|
304 |
|
305 |
+
.ecwd_theme_calendar div.ecwd-page-full table.cal_blue div.event-details, .ecwd_theme_calendar .ecwd-poster-board .ecwd-poster-item .ecwd-event-content {
|
306 |
+
color: #000000 !important;
|
307 |
}
|
308 |
+
|
309 |
+
.ecwd_theme_calendar ul.ecwd_list li .event-main-content {
|
310 |
+
color: #000000;
|
311 |
+
}
|
312 |
+
|
313 |
+
.ecwd_theme_calendar .ecwd_calendar .metainfo, .event-organizers a, .event-venue a, .event-detalis span, .event-detalis a, .ecwd-date .ecwd_timezone {
|
314 |
+
color: #000000 !important;
|
315 |
+
}
|
316 |
+
|
317 |
+
.ecwd_theme_calendar .ecwd-day-date, .ecwd_theme_calendar .day-event-list .ecwd-week-date, .ecwd_theme_calendar .day4-event-list .ecwd-week-date, .ecwd_theme_calendar .week-event-list .ecwd-week-date, .ecwd_theme_calendar .ecwd_list .ecwd-list-date {
|
318 |
+
background: #10738B !important;
|
319 |
+
}
|
320 |
+
|
321 |
+
.ecwd_theme_calendar .ecwd-day-date, .ecwd_theme_calendar .day-event-list .ecwd-week-date, .ecwd_theme_calendar .day4-event-list .ecwd-week-date, .ecwd_theme_calendar .week-event-list .ecwd-week-date, .ecwd_theme_calendar .ecwd_list .ecwd-list-date {
|
322 |
+
color: #ffffff !important;
|
323 |
+
}
|
324 |
+
|
325 |
+
.ecwd_theme_calendar div[class^="ecwd-page"] .ecwd-day-date, .ecwd_theme_calendar div[class^="ecwd-page"] .day-event-list .ecwd-week-date, .ecwd_theme_calendar div[class^="ecwd-page"] .day4-event-list .ecwd-week-date, .ecwd_theme_calendar div[class^="ecwd-page"] .week-event-list .ecwd-week-date, .ecwd_theme_calendar div[class^="ecwd-page"] .ecwd_list .ecwd-list-date {
|
326 |
+
font-size: 15px !important;
|
327 |
+
}
|
328 |
+
|
329 |
+
.ecwd_theme_calendar .ecwd-poster-board .ecwd-poster-item .ecwd-event-details .date span:not(.weekday-block):not(.datenumber) {
|
330 |
+
background: #585858 !important;
|
331 |
+
}
|
332 |
+
|
333 |
+
.ecwd_theme_calendar .ecwd-poster-board .ecwd-poster-item .ecwd-event-details .date span:not(.weekday-block):not(.datenumber) {
|
334 |
+
color: #ffffff !important;
|
335 |
}
|
336 |
|
337 |
+
.ecwd_theme_calendar .ecwd-pagination .cpage {
|
338 |
+
background: #ffffff !important;
|
|
|
339 |
}
|
340 |
|
341 |
+
.ecwd_theme_calendar .ecwd-pagination .page {
|
342 |
+
background: #10738B !important;
|
|
|
|
|
343 |
}
|
344 |
|
345 |
+
.ecwd_theme_calendar .ecwd-pagination .cpage, .ecwd_theme_calendar .ecwd-pagination .page {
|
346 |
+
color: #A5A5A5 !important;
|
347 |
}
|
css/calendar_grey.css
CHANGED
@@ -1,350 +1,374 @@
|
|
1 |
-
|
2 |
|
3 |
-
|
4 |
-
.ecwd_theme_calendar_grey
|
5 |
-
|
6 |
-
text-shadow:none;
|
7 |
}
|
8 |
-
|
9 |
-
|
|
|
|
|
10 |
}
|
11 |
-
|
12 |
-
|
|
|
13 |
}
|
14 |
-
|
15 |
-
|
|
|
16 |
}
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
border-bottom: 0;
|
21 |
}
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
}
|
25 |
-
|
26 |
-
|
|
|
27 |
}
|
28 |
-
|
29 |
-
|
|
|
30 |
}
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
}
|
35 |
|
36 |
-
.ecwd_theme_calendar_grey
|
37 |
-
|
38 |
}
|
39 |
-
|
40 |
-
|
|
|
41 |
}
|
42 |
-
|
43 |
-
|
|
|
44 |
}
|
45 |
|
46 |
-
.ecwd_theme_calendar_grey
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
-
.ecwd_theme_calendar_grey .
|
53 |
-
|
54 |
-
background:#f5f5f5;
|
55 |
}
|
56 |
|
57 |
-
.ecwd_theme_calendar_grey .
|
58 |
-
|
59 |
-
background:#fff;
|
60 |
}
|
61 |
|
62 |
-
.ecwd_theme_calendar_grey .
|
63 |
-
|
64 |
-
border-bottom: 1px solid rgba(0,0,0,0.2);
|
65 |
-
color: #555555;
|
66 |
}
|
67 |
-
|
68 |
-
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
|
71 |
-
.ecwd_theme_calendar_grey .
|
72 |
-
|
73 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7D9AC0", endColorstr="#647b9a");
|
74 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#7D9AC0), to(#647b9a));
|
75 |
-
background: -moz-linear-gradient(top, #7D9AC0, #647b9a);
|
76 |
-
border:1px solid #a5b9d3;
|
77 |
-
color:#fdfefe;
|
78 |
-
font-size: 1.3em;
|
79 |
}
|
80 |
|
81 |
-
.ecwd_theme_calendar_grey .
|
82 |
-
|
83 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#647b9a", endColorstr="#7D9AC0");
|
84 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#647b9a), to(#7D9AC0));
|
85 |
-
background: -moz-linear-gradient(top, #647b9a, #7D9AC0);
|
86 |
}
|
87 |
|
88 |
-
.ecwd_theme_calendar_grey .
|
89 |
-
|
90 |
-
padding:4px 3px 3px;
|
91 |
-
height:3.25em;
|
92 |
-
color:#fdfefe;
|
93 |
}
|
94 |
|
95 |
-
.ecwd_theme_calendar_grey .
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
|
|
|
|
|
98 |
}
|
|
|
99 |
.ecwd_theme_calendar_grey .ecwd_filters .ecwd_filter_heading {
|
100 |
-
|
101 |
-
color: #585858;
|
102 |
}
|
103 |
-
|
104 |
-
|
|
|
|
|
105 |
}
|
106 |
-
|
107 |
-
.ecwd_theme_calendar_grey.
|
108 |
-
|
109 |
-
color: #585858;
|
110 |
}
|
111 |
|
112 |
-
.ecwd_theme_calendar_grey.
|
113 |
-
|
114 |
}
|
115 |
|
116 |
-
.ecwd_theme_calendar_grey .
|
117 |
-
|
118 |
-
.ecwd_theme_calendar_grey .event-venue a,
|
119 |
-
.ecwd_theme_calendar_grey .event-detalis span,
|
120 |
-
.ecwd_theme_calendar_grey .event-detalis a{
|
121 |
-
color: #010101;
|
122 |
-
word-break: break-word;
|
123 |
}
|
124 |
|
125 |
-
.ecwd_theme_calendar_grey
|
|
|
|
|
126 |
|
127 |
-
|
128 |
-
|
129 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#7D9AC0), to(#647b9a));
|
130 |
-
background: -moz-linear-gradient(top, #7D9AC0, #647b9a);
|
131 |
-
outline:none;
|
132 |
}
|
133 |
-
|
134 |
-
|
|
|
135 |
}
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
background: -webkit-gradient(linear, left top, left bottom, from(#7D9AC0), to(#718bad));
|
140 |
-
background: -moz-linear-gradient(top, #7D9AC0, #718bad);
|
141 |
}
|
142 |
|
143 |
-
.ecwd_theme_calendar_grey
|
144 |
-
|
145 |
-
font-size: 0.6em;
|
146 |
-
position: absolute;
|
147 |
-
right: 7px;
|
148 |
-
text-decoration: underline;
|
149 |
-
top: 3px;
|
150 |
}
|
151 |
|
152 |
-
.ecwd_theme_calendar_grey
|
153 |
-
|
154 |
-
-webkit-box-shadow: 2px 3px 8px rgba(1,2,2,.2);
|
155 |
-
-moz-box-shadow: 2px 3px 8px rgba(1,2,2,.2);
|
156 |
-
box-shadow: 2px 3px 8px rgba(1,2,2,.2);
|
157 |
-
-moz-border-radius: 4px;
|
158 |
-
-webkit-border-radius: 4px;
|
159 |
-
border-radius: 4px;
|
160 |
-
padding:5px 5px 10px 5px;
|
161 |
}
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
}
|
166 |
-
@media only screen and (max-width: 768px){
|
167 |
-
.ecwd_theme_calendar_grey .ecwd_calendar td .day-number {
|
168 |
-
padding: 0px !important;
|
169 |
-
}
|
170 |
-
.ecwd_theme_calendar_grey .ecwd-page-full table.cal_blue.ecwd_calendar_container .has-events:after {
|
171 |
|
172 |
-
|
173 |
-
|
|
|
174 |
|
175 |
-
|
176 |
-
|
177 |
-
}
|
178 |
}
|
179 |
|
|
|
|
|
|
|
|
|
180 |
|
181 |
-
.ecwd_theme_calendar_grey .
|
182 |
-
|
183 |
-
border: 1px solid #D5DCE2;
|
184 |
-
margin-bottom:1px !important;
|
185 |
-
background: #F9F9F9;
|
186 |
-
color: #676767;
|
187 |
}
|
188 |
|
189 |
-
.ecwd_theme_calendar_grey .
|
190 |
-
|
191 |
-
border: 1px solid #D5DCE2;
|
192 |
-
margin-bottom: 1px;
|
193 |
-
background: #F9F9F9;
|
194 |
}
|
195 |
-
|
196 |
-
|
|
|
197 |
}
|
198 |
|
199 |
-
.ecwd_theme_calendar_grey .
|
200 |
-
|
201 |
-
|
202 |
-
margin: 0 auto !important;
|
203 |
-
border-radius: 0;
|
204 |
-
border-bottom: 1px solid #CCC;
|
205 |
-
background: #ffffff !important;
|
206 |
-
padding:10px 0 !important;
|
207 |
-
color: #676767 !important;
|
208 |
}
|
209 |
|
210 |
-
.ecwd_theme_calendar_grey table.cal_blue.
|
211 |
-
|
212 |
-
background:#E5E5E5;
|
213 |
}
|
214 |
|
215 |
-
.ecwd_theme_calendar_grey table.cal_blue.
|
216 |
-
|
217 |
}
|
218 |
|
219 |
-
.ecwd_theme_calendar_grey .
|
220 |
-
|
221 |
-
background:#585858;
|
222 |
}
|
223 |
|
|
|
|
|
|
|
224 |
|
|
|
|
|
|
|
|
|
225 |
|
226 |
-
.ecwd_theme_calendar_grey .
|
227 |
-
|
228 |
}
|
229 |
-
|
230 |
-
|
|
|
231 |
}
|
232 |
|
|
|
|
|
|
|
233 |
|
|
|
|
|
|
|
234 |
|
235 |
-
|
|
|
|
|
236 |
|
237 |
-
.ecwd_theme_calendar_grey .
|
238 |
-
|
239 |
-
color: #555555;
|
240 |
-
font-size: 23px;
|
241 |
-
background:#f5f5f5;
|
242 |
}
|
243 |
|
244 |
-
.ecwd_theme_calendar_grey .
|
245 |
-
|
246 |
-
border-right: 1px solid #FFFFFF;
|
247 |
}
|
248 |
-
|
249 |
-
|
|
|
250 |
}
|
251 |
|
252 |
-
.ecwd_theme_calendar_grey .
|
253 |
-
|
254 |
-
color:#585858;
|
255 |
}
|
256 |
|
257 |
-
.ecwd_theme_calendar_grey .
|
258 |
-
|
259 |
}
|
260 |
|
261 |
-
.ecwd_theme_calendar_grey .
|
262 |
-
|
263 |
-
font-size: 17px;
|
264 |
}
|
265 |
|
266 |
-
.ecwd_theme_calendar_grey .
|
267 |
-
|
268 |
-
border-left:1px solid #FFFFFF;
|
269 |
-
border-right:1px solid #FFFFFF;
|
270 |
}
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
}
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
font-size: 13px;
|
279 |
-
line-height: 24px;
|
280 |
-
margin-top: -8px;
|
281 |
-
}
|
282 |
}
|
283 |
|
284 |
-
.ecwd_theme_calendar_grey .
|
285 |
-
|
286 |
}
|
287 |
|
288 |
-
.ecwd_theme_calendar_grey .
|
289 |
-
|
290 |
}
|
291 |
|
|
|
|
|
|
|
292 |
|
293 |
-
.ecwd_theme_calendar_grey .
|
294 |
-
|
295 |
-
color: #5C5C5C;
|
296 |
-
padding: 2px 0 4px 2px;
|
297 |
}
|
298 |
|
299 |
-
|
|
|
|
|
300 |
|
301 |
-
.ecwd_theme_calendar_grey .ecwd-
|
302 |
-
|
303 |
-
background: #F5F5F5;
|
304 |
}
|
305 |
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
display:none;
|
310 |
-
padding-top: 6px;
|
311 |
-
}
|
312 |
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
|
|
|
|
|
317 |
}
|
318 |
-
/*#############LIST,WEEK VIEW###############*/
|
319 |
|
320 |
-
.ecwd_theme_calendar_grey .
|
321 |
-
|
322 |
-
.ecwd_theme_calendar_grey .day-event-list .ecwd-week-date,
|
323 |
-
.ecwd_theme_calendar_grey .day4-event-list .ecwd-week-date,
|
324 |
-
.ecwd_theme_calendar_grey .week-event-list .ecwd-week-date {
|
325 |
-
background: #e5e5e5;
|
326 |
-
color: #585858;
|
327 |
}
|
328 |
-
|
329 |
-
.ecwd_theme_calendar_grey
|
330 |
-
|
331 |
-
.ecwd_theme_calendar_grey ul.day4-event-list{
|
332 |
-
background: #f9f9f9;
|
333 |
-
padding:0;
|
334 |
-
margin:0;
|
335 |
}
|
336 |
|
337 |
-
.ecwd_theme_calendar_grey .
|
338 |
-
|
339 |
-
background: #e5e5e5;
|
340 |
}
|
341 |
|
342 |
-
.ecwd_theme_calendar_grey .ecwd-
|
343 |
-
|
344 |
-
|
345 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
}
|
347 |
|
348 |
-
.ecwd_theme_calendar_grey.
|
349 |
-
|
350 |
}
|
1 |
+
/*.ecwd_11.ecwd_theme_10 => .ecwd_theme_calendar_grey*/
|
2 |
|
3 |
+
|
4 |
+
.ecwd_theme_calendar_grey:not(.calendar_widget_content) {
|
5 |
+
width: 100% !important;
|
|
|
6 |
}
|
7 |
+
|
8 |
+
.ecwd_theme_calendar_grey .calendar-head {
|
9 |
+
background: #ffffff !important;
|
10 |
+
border: 1px solid #E5E5E5;
|
11 |
}
|
12 |
+
|
13 |
+
.ecwd_theme_calendar_grey table.cal_blue.mini td ul.events li {
|
14 |
+
background: #ffffff;
|
15 |
}
|
16 |
+
|
17 |
+
.ecwd_theme_calendar_grey .calendar-head .previous {
|
18 |
+
border-right: 1px solid #ffffff !important;
|
19 |
}
|
20 |
+
|
21 |
+
.ecwd_theme_calendar_grey .calendar-head .next {
|
22 |
+
border-left: 1px solid #ffffff !important;
|
|
|
23 |
}
|
24 |
+
|
25 |
+
.ecwd_theme_calendar_grey .calendar-head .current-month {
|
26 |
+
border-left: 1px solid #ffffff !important;
|
27 |
+
border-right: 1px solid #ffffff !important;
|
28 |
}
|
29 |
+
|
30 |
+
.ecwd_theme_calendar_grey .calendar-head .next a, .ecwd_theme_calendar_grey .calendar-head .next a {
|
31 |
+
color: #3f3f3f !important;
|
32 |
}
|
33 |
+
|
34 |
+
.ecwd_theme_calendar_grey .calendar-head .next a, .ecwd_theme_calendar_grey .calendar-head .previous a {
|
35 |
+
color: #3f3f3f !important;
|
36 |
}
|
37 |
+
|
38 |
+
.ecwd_theme_calendar_grey .current-month a {
|
39 |
+
color: #3f3f3f !important;
|
40 |
}
|
41 |
|
42 |
+
.ecwd_theme_calendar_grey .calendar-head .next a, .ecwd_theme_calendar_grey .calendar-head .previous a {
|
43 |
+
font-size: 18px !important;
|
44 |
}
|
45 |
+
|
46 |
+
.ecwd_theme_calendar_grey .calendar-head .current-month {
|
47 |
+
color: #3f3f3f !important;
|
48 |
}
|
49 |
+
|
50 |
+
.ecwd_theme_calendar_grey .calendar-head .current-month {
|
51 |
+
font-size: 28px !important;
|
52 |
}
|
53 |
|
54 |
+
.ecwd_theme_calendar_grey .current-month a {
|
55 |
+
font-size: 28px !important;
|
56 |
+
}
|
57 |
+
|
58 |
+
.ecwd_theme_calendar_grey .calendar-head .current-month div {
|
59 |
+
color: #3f3f3f !important;
|
60 |
+
}
|
61 |
+
|
62 |
+
.ecwd_theme_calendar_grey .calendar-head .current-month div {
|
63 |
+
font-size: 16px !important;
|
64 |
+
line-height: 16px !important;
|
65 |
+
}
|
66 |
+
|
67 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul {
|
68 |
+
background-color: #f5f5f5 !important;
|
69 |
}
|
70 |
|
71 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li a, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-left {
|
72 |
+
background-color: #f5f5f5 !important;
|
73 |
+
}
|
74 |
+
|
75 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-left {
|
76 |
+
border-left: 1px solid #ffffff !important;
|
77 |
+
border-right: 1px solid #ffffff !important;
|
78 |
+
}
|
79 |
|
80 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li a, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-left {
|
81 |
+
color: #555555 !important;
|
|
|
82 |
}
|
83 |
|
84 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li a, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-right, .ecwd_theme_calendar_grey .cal_tabs_blue .filter-container ul li, .ecwd_theme_calendar_grey .ecwd_calendar .filter-arrow-left {
|
85 |
+
font-size: 16px !important;
|
|
|
86 |
}
|
87 |
|
88 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue ul li.ecwd-selected-mode a {
|
89 |
+
background-color: #ffffff !important;
|
|
|
|
|
90 |
}
|
91 |
+
|
92 |
+
.ecwd_theme_calendar_grey .cal_tabs_blue ul li.ecwd-selected-mode a {
|
93 |
+
color: #555555 !important;
|
94 |
+
}
|
95 |
+
|
96 |
+
.ecwd_theme_calendar_grey .ecwd-search button, .ecwd_theme_calendar_grey .ecwd-search button:hover {
|
97 |
+
background: #f5f5f5 !important;
|
98 |
}
|
99 |
|
100 |
+
.ecwd_theme_calendar_grey .ecwd-search-submit .fa, .ecwd_theme_calendar_grey .ecwd-search-submit .fa:hover {
|
101 |
+
color: #555555 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
|
104 |
+
.ecwd_theme_calendar_grey .ecwd_show_filters_top {
|
105 |
+
background-color: #f5f5f5 !important;
|
|
|
|
|
|
|
106 |
}
|
107 |
|
108 |
+
.ecwd_theme_calendar_grey .ecwd_show_filters_left {
|
109 |
+
background-color: #ffffff !important;
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
+
.ecwd_theme_calendar_grey .ecwd_show_filters_top {
|
113 |
+
color: #3f3f3f !important;
|
114 |
+
}
|
115 |
+
|
116 |
+
.ecwd_theme_calendar_grey .ecwd_show_filters_top span {
|
117 |
+
color: #3f3f3f !important;
|
118 |
+
}
|
119 |
+
|
120 |
+
.ecwd_theme_calendar_grey .ecwd_show_filters_left {
|
121 |
+
color: #3f3f3f !important;
|
122 |
+
}
|
123 |
|
124 |
+
.ecwd_theme_calendar_grey .ecwd_show_filters_left span {
|
125 |
+
color: #3f3f3f !important;
|
126 |
}
|
127 |
+
|
128 |
.ecwd_theme_calendar_grey .ecwd_filters .ecwd_filter_heading {
|
129 |
+
background-color: #f5f5f5 !important;
|
|
|
130 |
}
|
131 |
+
|
132 |
+
.ecwd_theme_calendar_grey .ecwd_filters .ecwd_filter_item {
|
133 |
+
border: 1px solid #DEE3E8 !important;
|
134 |
+
border-top: 0 !important;
|
135 |
}
|
136 |
+
|
137 |
+
.ecwd_theme_calendar_grey .ecwd_filter_item .ecwd_filter_heading span:after {
|
138 |
+
border-color: transparent transparent transparent #3f3f3f !important;
|
|
|
139 |
}
|
140 |
|
141 |
+
.ecwd_theme_calendar_grey .ecwd_filter_item .ecwd_filter_heading.open span:after {
|
142 |
+
border-color: #3f3f3f transparent transparent transparent !important;
|
143 |
}
|
144 |
|
145 |
+
.ecwd_theme_calendar_grey .ecwd_filters .ecwd_filter_heading {
|
146 |
+
color: #372827 !important;
|
|
|
|
|
|
|
|
|
|
|
147 |
}
|
148 |
|
149 |
+
.ecwd_theme_calendar_grey .ecwd_filters .ecwd_filter_heading {
|
150 |
+
font-size: 16px !important;
|
151 |
+
}
|
152 |
|
153 |
+
.ecwd_theme_calendar_grey .ecwd_reset_filters span {
|
154 |
+
color: #3f3f3f !important;
|
|
|
|
|
|
|
155 |
}
|
156 |
+
|
157 |
+
.ecwd_theme_calendar_grey .ecwd_reset_filters span {
|
158 |
+
font-size: 15px !important;
|
159 |
}
|
160 |
+
|
161 |
+
.ecwd_theme_calendar_grey .ecwd_filter_checkboxes ul li {
|
162 |
+
background-color: #ffffff !important;
|
|
|
|
|
163 |
}
|
164 |
|
165 |
+
.ecwd_theme_calendar_grey .ecwd_filter_checkboxes ul li {
|
166 |
+
border-color: #DEE3E8 !important;
|
|
|
|
|
|
|
|
|
|
|
167 |
}
|
168 |
|
169 |
+
.ecwd_theme_calendar_grey .ecwd_filter_checkboxes ul li span {
|
170 |
+
color: #6E6E6E !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
}
|
172 |
+
|
173 |
+
.ecwd_theme_calendar_grey .ecwd_filter_checkboxes ul li span {
|
174 |
+
font-size: 15px !important;
|
175 |
}
|
|
|
|
|
|
|
|
|
|
|
176 |
|
177 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .weekend-heading {
|
178 |
+
background: #e5e5e5 !important;
|
179 |
+
}
|
180 |
|
181 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .weekend-heading {
|
182 |
+
border: 1px solid #ededed !important;
|
|
|
183 |
}
|
184 |
|
185 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .weekend-heading {
|
186 |
+
color: #3f3f3f !important;
|
187 |
+
font-size: 14px !important;
|
188 |
+
}
|
189 |
|
190 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .normal-day-heading, .ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .weekend-heading {
|
191 |
+
font-size: 14px !important;
|
|
|
|
|
|
|
|
|
192 |
}
|
193 |
|
194 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date {
|
195 |
+
background: #ffffff !important;
|
|
|
|
|
|
|
196 |
}
|
197 |
+
|
198 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date {
|
199 |
+
border: 1px solid #E5E5E5 !important;
|
200 |
}
|
201 |
|
202 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date {
|
203 |
+
color: #5C5C5C !important;
|
204 |
+
font-size: 14px !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
}
|
206 |
|
207 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date {
|
208 |
+
font-size: 14px !important;
|
|
|
209 |
}
|
210 |
|
211 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .weekend {
|
212 |
+
background: #EDEDED !important;
|
213 |
}
|
214 |
|
215 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-without-date {
|
216 |
+
background: #F9F9F9 !important;
|
|
|
217 |
}
|
218 |
|
219 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date .day-number {
|
220 |
+
background: #f5f5f5 !important;
|
221 |
+
}
|
222 |
|
223 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date .day-number {
|
224 |
+
color: #5C5C5C !important;
|
225 |
+
font-size: 14px !important;
|
226 |
+
}
|
227 |
|
228 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .day-with-date {
|
229 |
+
font-size: 14px !important;
|
230 |
}
|
231 |
+
|
232 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .current-day, .ecwd_theme_calendar_grey table.cal_blue.mini .current-day {
|
233 |
+
background: #ffffff !important;
|
234 |
}
|
235 |
|
236 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .current-day {
|
237 |
+
color: #3f3f3f !important;
|
238 |
+
}
|
239 |
|
240 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .current-day .day-number, .ecwd_theme_calendar_grey table.cal_blue.mini .current-day {
|
241 |
+
background: #E5E5E5 !important;
|
242 |
+
}
|
243 |
|
244 |
+
.ecwd_theme_calendar_grey table.cal_blue.ecwd_calendar_container .current-day .day-number {
|
245 |
+
color: #3f3f3f !important;
|
246 |
+
}
|
247 |
|
248 |
+
.ecwd_theme_calendar_grey .cal_blue.ecwd_calendar_container .events a, .ecwd_theme_calendar_grey .cal_blue.ecwd_calendar_container .events span.ecwd_open_event_popup {
|
249 |
+
color: #3f3f3f !important;
|
|
|
|
|
|
|
250 |
}
|
251 |
|
252 |
+
.ecwd_theme_calendar_grey ul.ecwd_list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.ecwd_list li .event-main-content h3 span.ecwd_open_event_popup {
|
253 |
+
color: #3f3f3f !important;
|
|
|
254 |
}
|
255 |
+
|
256 |
+
.ecwd_theme_calendar_grey ul.week-event-list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.week-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
257 |
+
color: #3f3f3f !important;
|
258 |
}
|
259 |
|
260 |
+
.ecwd_theme_calendar_grey ul.day-event-list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.day-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
261 |
+
color: #3f3f3f !important;
|
|
|
262 |
}
|
263 |
|
264 |
+
.ecwd_theme_calendar_grey ul.day4-event-list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.day4-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
265 |
+
color: #3f3f3f !important;
|
266 |
}
|
267 |
|
268 |
+
.ecwd_theme_calendar_grey .ecwd_map_event a, .ecwd_theme_calendar_grey .ecwd_map_event span.ecwd_open_event_popup {
|
269 |
+
color: #3f3f3f !important;
|
|
|
270 |
}
|
271 |
|
272 |
+
.ecwd_theme_calendar_grey .ecwd-poster-item h2 a, .ecwd_theme_calendar_grey .ecwd-poster-item h2 span.ecwd_open_event_popup {
|
273 |
+
color: #3f3f3f !important;
|
|
|
|
|
274 |
}
|
275 |
+
|
276 |
+
.ecwd_theme_calendar_grey .cal_blue.ecwd_calendar_container .events a, .ecwd_theme_calendar_grey .cal_blue.ecwd_calendar_container .events span.ecwd_open_event_popup {
|
277 |
+
font-size: 14px !important;
|
278 |
}
|
279 |
|
280 |
+
.ecwd_theme_calendar_grey ul.ecwd_list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.ecwd_list li .event-main-content h3 span.ecwd_open_event_popup {
|
281 |
+
font-size: 14px !important;
|
|
|
|
|
|
|
|
|
282 |
}
|
283 |
|
284 |
+
.ecwd_theme_calendar_grey ul.week-event-list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.week-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
285 |
+
font-size: 14px !important;
|
286 |
}
|
287 |
|
288 |
+
.ecwd_theme_calendar_grey ul.day-event-list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.day-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
289 |
+
font-size: 14px !important;
|
290 |
}
|
291 |
|
292 |
+
.ecwd_theme_calendar_grey ul.day4-event-list li .event-main-content h3 a, .ecwd_theme_calendar_grey ul.day4-event-list li .event-main-content h3 span.ecwd_open_event_popup {
|
293 |
+
font-size: 14px !important;
|
294 |
+
}
|
295 |
|
296 |
+
.ecwd_theme_calendar_grey .ecwd_map_event a, .ecwd_theme_calendar_grey .ecwd_map_event span.ecwd_open_event_popup {
|
297 |
+
font-size: 14px !important;
|
|
|
|
|
298 |
}
|
299 |
|
300 |
+
.ecwd_theme_calendar_grey .ecwd-poster-item h2 a, .ecwd_theme_calendar_grey .ecwd-poster-item h2 span.ecwd_open_event_popup {
|
301 |
+
font-size: 14px !important;
|
302 |
+
}
|
303 |
|
304 |
+
.ecwd_theme_calendar_grey div.ecwd-page-full table.cal_blue div.event-details, .ecwd_theme_calendar_grey .ecwd-poster-board .ecwd-poster-item .ecwd-event-content {
|
305 |
+
background: #ffffff !important;
|
|
|
306 |
}
|
307 |
|
308 |
+
.ecwd_theme_calendar_grey div.ecwd-event-arrow:before {
|
309 |
+
border-right: solid #ffffff !important;
|
310 |
+
}
|
|
|
|
|
|
|
311 |
|
312 |
+
.ecwd_theme_calendar_grey div.ecwd-event-arrow-right:before {
|
313 |
+
border-left: solid #ffffff !important;
|
314 |
+
}
|
315 |
|
316 |
+
.ecwd_theme_calendar_grey div.ecwd-page-full ul.ecwd_list li, .ecwd_theme_calendar_grey ul.ecwd_list li .event-main-content {
|
317 |
+
background: #ffffff !important;
|
318 |
}
|
|
|
319 |
|
320 |
+
.ecwd_theme_calendar_grey .event-main-content, .ecwd_theme_calendar_grey .ecwd-widget-mini .event-container, .ecwd_theme_calendar_grey.ecwd-widget-mini .ecwd_list .event-main-content {
|
321 |
+
background: #ffffff !important;
|
|
|
|
|
|
|
|
|
|
|
322 |
}
|
323 |
+
|
324 |
+
.ecwd_theme_calendar_grey div.ecwd-page-full table.cal_blue div.event-details, .ecwd_theme_calendar_grey .ecwd-poster-board .ecwd-poster-item .ecwd-event-content {
|
325 |
+
border: 1px solid #bfbfbf !important;
|
|
|
|
|
|
|
|
|
326 |
}
|
327 |
|
328 |
+
.ecwd_theme_calendar_grey ul.ecwd_list li {
|
329 |
+
border: 1px solid #bfbfbf !important;
|
|
|
330 |
}
|
331 |
|
332 |
+
.ecwd_theme_calendar_grey div.ecwd-page-full table.cal_blue div.event-details, .ecwd_theme_calendar_grey .ecwd-poster-board .ecwd-poster-item .ecwd-event-content {
|
333 |
+
color: #000000 !important;
|
334 |
+
}
|
335 |
+
|
336 |
+
.ecwd_theme_calendar_grey ul.ecwd_list li .event-main-content {
|
337 |
+
color: #000000;
|
338 |
+
}
|
339 |
+
|
340 |
+
.ecwd_theme_calendar_grey .ecwd_calendar .metainfo, .event-organizers a, .event-venue a, .event-detalis span, .event-detalis a, .ecwd-date .ecwd_timezone {
|
341 |
+
color: #000000 !important;
|
342 |
+
}
|
343 |
+
|
344 |
+
.ecwd_theme_calendar_grey .ecwd-day-date, .ecwd_theme_calendar_grey .day-event-list .ecwd-week-date, .ecwd_theme_calendar_grey .day4-event-list .ecwd-week-date, .ecwd_theme_calendar_grey .week-event-list .ecwd-week-date, .ecwd_theme_calendar_grey .ecwd_list .ecwd-list-date {
|
345 |
+
background: #e5e5e5 !important;
|
346 |
+
}
|
347 |
+
|
348 |
+
.ecwd_theme_calendar_grey .ecwd-day-date, .ecwd_theme_calendar_grey .day-event-list .ecwd-week-date, .ecwd_theme_calendar_grey .day4-event-list .ecwd-week-date, .ecwd_theme_calendar_grey .week-event-list .ecwd-week-date, .ecwd_theme_calendar_grey .ecwd_list .ecwd-list-date {
|
349 |
+
color: #3f3f3f !important;
|
350 |
+
}
|
351 |
+
|
352 |
+
.ecwd_theme_calendar_grey div[class^="ecwd-page"] .ecwd-day-date, .ecwd_theme_calendar_grey div[class^="ecwd-page"] .day-event-list .ecwd-week-date, .ecwd_theme_calendar_grey div[class^="ecwd-page"] .day4-event-list .ecwd-week-date, .ecwd_theme_calendar_grey div[class^="ecwd-page"] .week-event-list .ecwd-week-date, .ecwd_theme_calendar_grey div[class^="ecwd-page"] .ecwd_list .ecwd-list-date {
|
353 |
+
font-size: 15px !important;
|
354 |
+
}
|
355 |
+
|
356 |
+
.ecwd_theme_calendar_grey .ecwd-poster-board .ecwd-poster-item .ecwd-event-details .date span:not(.weekday-block):not(.datenumber) {
|
357 |
+
background: #3f3f3f !important;
|
358 |
+
}
|
359 |
+
|
360 |
+
.ecwd_theme_calendar_grey .ecwd-poster-board .ecwd-poster-item .ecwd-event-details .date span:not(.weekday-block):not(.datenumber) {
|
361 |
+
color: #ffffff !important;
|
362 |
+
}
|
363 |
+
|
364 |
+
.ecwd_theme_calendar_grey .ecwd-pagination .cpage {
|
365 |
+
background: #ffffff !important;
|
366 |
+
}
|
367 |
+
|
368 |
+
.ecwd_theme_calendar_grey .ecwd-pagination .page {
|
369 |
+
background: #e5e5e5 !important;
|
370 |
}
|
371 |
|
372 |
+
.ecwd_theme_calendar_grey .ecwd-pagination .cpage, .ecwd_theme_calendar_grey .ecwd-pagination .page {
|
373 |
+
color: #A5A5A5 !important;
|
374 |
}
|
css/ecwd_block.css
CHANGED
@@ -9,11 +9,11 @@
|
|
9 |
}
|
10 |
|
11 |
.tw-container .ecwd_tw-container-wrap {
|
12 |
-
height:
|
13 |
-
background: #fff;
|
14 |
width: 420px;
|
15 |
position: absolute;
|
16 |
-
top:
|
17 |
left: calc(50% - 210px);
|
18 |
}
|
19 |
|
@@ -28,3 +28,9 @@
|
|
28 |
width: 100%;
|
29 |
}
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
9 |
}
|
10 |
|
11 |
.tw-container .ecwd_tw-container-wrap {
|
12 |
+
height: 450px;
|
13 |
+
background-color: #fff;
|
14 |
width: 420px;
|
15 |
position: absolute;
|
16 |
+
top: calc(50% - 225px);
|
17 |
left: calc(50% - 210px);
|
18 |
}
|
19 |
|
28 |
width: 100%;
|
29 |
}
|
30 |
|
31 |
+
/*.ecwd_tw-container-wrap{*/
|
32 |
+
/*background-image: url("../assets/loading.gif");*/
|
33 |
+
/*background-position: center center;*/
|
34 |
+
/*background-repeat: no-repeat;*/
|
35 |
+
/*background-size: 128px;*/
|
36 |
+
/*}*/
|
css/style.css
CHANGED
@@ -332,7 +332,6 @@ div.ecwd-page-full .has-events ul.more_events > li div.event-details {
|
|
332 |
padding:1px !important;
|
333 |
border: solid #D6DDE2;
|
334 |
border-width: 0 1px 1px 0;
|
335 |
-
font-family: Segoe UI !important;
|
336 |
}
|
337 |
|
338 |
.ecwd-events-day-details ul.events{
|
@@ -668,7 +667,7 @@ table.cal_blue.mini .next span,
|
|
668 |
}
|
669 |
.calendar_main .ecwd_calendar .ecwd_calendar_prev_next{
|
670 |
text-align: center;
|
671 |
-
box-shadow: 0px 11px 17px rgba(0,0,0,0.2)
|
672 |
z-index: 3;
|
673 |
position: relative;
|
674 |
}
|
@@ -1115,7 +1114,7 @@ table.cal_blue.ecwd_calendar_container select {
|
|
1115 |
-webkit-box-sizing: border-box;
|
1116 |
display:table-cell;
|
1117 |
vertical-align: middle;
|
1118 |
-
text-shadow:0px 0px 3px #444444
|
1119 |
}
|
1120 |
|
1121 |
.calendar-head .current-month{
|
@@ -1127,7 +1126,7 @@ table.cal_blue.ecwd_calendar_container select {
|
|
1127 |
-webkit-box-sizing: border-box;
|
1128 |
display:table-cell;
|
1129 |
vertical-align: middle;
|
1130 |
-
text-shadow: 0px 0px 3px #444444
|
1131 |
}
|
1132 |
|
1133 |
.ecwd-widget-mini .calendar-head .current-month{
|
@@ -2757,4 +2756,10 @@ table.ecwd_calendar_container > tbody > tr >td{
|
|
2757 |
|
2758 |
.ecwd_map_div, .ecwd_map_div span{
|
2759 |
color:black;
|
2760 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
332 |
padding:1px !important;
|
333 |
border: solid #D6DDE2;
|
334 |
border-width: 0 1px 1px 0;
|
|
|
335 |
}
|
336 |
|
337 |
.ecwd-events-day-details ul.events{
|
667 |
}
|
668 |
.calendar_main .ecwd_calendar .ecwd_calendar_prev_next{
|
669 |
text-align: center;
|
670 |
+
/*box-shadow: 0px 11px 17px rgba(0,0,0,0.2);*/
|
671 |
z-index: 3;
|
672 |
position: relative;
|
673 |
}
|
1114 |
-webkit-box-sizing: border-box;
|
1115 |
display:table-cell;
|
1116 |
vertical-align: middle;
|
1117 |
+
/*text-shadow:0px 0px 3px #444444;*/
|
1118 |
}
|
1119 |
|
1120 |
.calendar-head .current-month{
|
1126 |
-webkit-box-sizing: border-box;
|
1127 |
display:table-cell;
|
1128 |
vertical-align: middle;
|
1129 |
+
/*text-shadow: 0px 0px 3px #444444;*/
|
1130 |
}
|
1131 |
|
1132 |
.ecwd-widget-mini .calendar-head .current-month{
|
2756 |
|
2757 |
.ecwd_map_div, .ecwd_map_div span{
|
2758 |
color:black;
|
2759 |
+
}
|
2760 |
+
.ecwd_calendar a{
|
2761 |
+
box-shadow: none !important;
|
2762 |
+
}
|
2763 |
+
.ecwd_calendar td .day-number{
|
2764 |
+
padding: 2px 0 4px 2px;
|
2765 |
+
}
|
ecwd.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -24,7 +24,7 @@ if (!defined('ECWD_URL')) {
|
|
24 |
}
|
25 |
|
26 |
if (!defined('ECWD_VERSION')) {
|
27 |
-
define('ECWD_VERSION', "1.1.
|
28 |
}
|
29 |
|
30 |
if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
+
* Version: 1.1.14
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
24 |
}
|
25 |
|
26 |
if (!defined('ECWD_VERSION')) {
|
27 |
+
define('ECWD_VERSION', "1.1.14");
|
28 |
}
|
29 |
|
30 |
if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
|
includes/ecwd-cpt-class.php
CHANGED
@@ -916,7 +916,12 @@ class ECWD_Cpt {
|
|
916 |
//order orgs and venues by post name
|
917 |
function ecwd_archive_order($vars) {
|
918 |
global $ecwd_options;
|
919 |
-
|
|
|
|
|
|
|
|
|
|
|
920 |
$types = array(self::ORGANIZER_POST_TYPE, self::VENUE_POST_TYPE);
|
921 |
if (!is_admin() && isset($vars['post_type']) && is_post_type_hierarchical($vars['post_type']) && in_array($vars['post_type'], $types)) {
|
922 |
$vars['orderby'] = $orderby;
|
916 |
//order orgs and venues by post name
|
917 |
function ecwd_archive_order($vars) {
|
918 |
global $ecwd_options;
|
919 |
+
if(isset($ecwd_options['cpt_order']) && $ecwd_options['cpt_order'] !== 'post_name'){
|
920 |
+
$orderby = $ecwd_options['cpt_order'];
|
921 |
+
}else{
|
922 |
+
$orderby = 'post_title';
|
923 |
+
}
|
924 |
+
|
925 |
$types = array(self::ORGANIZER_POST_TYPE, self::VENUE_POST_TYPE);
|
926 |
if (!is_admin() && isset($vars['post_type']) && is_post_type_hierarchical($vars['post_type']) && in_array($vars['post_type'], $types)) {
|
927 |
$vars['orderby'] = $orderby;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: calendar, date, event, event calendar, events, events calendar, meeting, o
|
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -295,6 +295,12 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
295 |
|
296 |
== Changelog ==
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
= 1.1.13 =
|
299 |
* Added: Gutenberg integration
|
300 |
* Fixed: Google Maps zoom
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 1.1.14
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
295 |
|
296 |
== Changelog ==
|
297 |
|
298 |
+
= 1.1.14 =
|
299 |
+
* Changed: create_function is deprecated in PHP 7.2
|
300 |
+
* Changed: Sort organizers and venues by title not slug in post type archive
|
301 |
+
* Improved: Styles of Gutenberg block popup
|
302 |
+
* Fixed: Styles of free and premium versions synchronized
|
303 |
+
|
304 |
= 1.1.13 =
|
305 |
* Added: Gutenberg integration
|
306 |
* Fixed: Google Maps zoom
|
views/admin/ecwd-shortcode-iframe.php
CHANGED
@@ -180,7 +180,7 @@ if (defined('ECWD_FILTERS_EVENT_MAIN_FILE') && is_plugin_active(ECWD_FILTERS_EVE
|
|
180 |
font-weight: 600;
|
181 |
line-height: 36px;
|
182 |
margin: 0;
|
183 |
-
padding:
|
184 |
}
|
185 |
.ecwd_tab{
|
186 |
display: none;
|
@@ -192,7 +192,8 @@ if (defined('ECWD_FILTERS_EVENT_MAIN_FILE') && is_plugin_active(ECWD_FILTERS_EVE
|
|
192 |
background-color: #fff;
|
193 |
}
|
194 |
.ecwd_shortcode_notice{
|
195 |
-
margin-left:
|
|
|
196 |
}
|
197 |
.ecwd_shortcode_params{
|
198 |
padding: 12px;
|
@@ -200,38 +201,44 @@ if (defined('ECWD_FILTERS_EVENT_MAIN_FILE') && is_plugin_active(ECWD_FILTERS_EVE
|
|
200 |
.ecwd_shortcode_content *{
|
201 |
font-size: 14px;
|
202 |
}
|
|
|
|
|
|
|
203 |
.ecwd_shortcode_params label{
|
204 |
-
width: 180px;
|
205 |
display: inline-block;
|
206 |
}
|
207 |
.ecwd_shortcode_content{
|
208 |
background: #fff;
|
209 |
}
|
210 |
.ecwd_shortcode_header{
|
211 |
-
background: #
|
212 |
-
border-bottom: 1px solid #ddd
|
213 |
padding: 0;
|
214 |
min-height: 36px;
|
215 |
}
|
216 |
.ecwd_shortcode_menu{
|
217 |
background: #FFF;
|
218 |
display: block;
|
219 |
-
border-bottom: 1px solid #
|
|
|
220 |
}
|
221 |
.ecwd_shortcode_menu div{
|
222 |
float:left;
|
223 |
-
border-left: 1px solid #
|
224 |
background: #ffffff;
|
225 |
-
padding: 8px;
|
226 |
text-shadow: 0 1px 1px rgba(255,255,255,0.75);
|
227 |
height: 13px;
|
228 |
cursor: pointer;
|
|
|
|
|
229 |
}
|
230 |
.ecwd_shortcode_menu .ecwd_active_shortcode_menu{
|
231 |
background: #FDFDFD;
|
232 |
border-bottom-color: transparent;
|
233 |
margin-bottom: -1px;
|
234 |
-
height:
|
|
|
235 |
}
|
236 |
.ecwd_shortcode_menu .ecwd_active_shortcode_menu:focus{
|
237 |
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30,140,190,.8);
|
@@ -335,12 +342,55 @@ if (defined('ECWD_FILTERS_EVENT_MAIN_FILE') && is_plugin_active(ECWD_FILTERS_EVE
|
|
335 |
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
|
336 |
vertical-align: top;
|
337 |
}
|
|
|
338 |
.ecwd_shortcode_buttons{
|
339 |
position: absolute;
|
340 |
bottom: 0;
|
341 |
right: 0;
|
342 |
}
|
343 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
</style>
|
345 |
<script>
|
346 |
jQuery(".ecwd_shortcode_menu_item").click(function () {
|
180 |
font-weight: 600;
|
181 |
line-height: 36px;
|
182 |
margin: 0;
|
183 |
+
padding: 5px 36px 5px 16px;
|
184 |
}
|
185 |
.ecwd_tab{
|
186 |
display: none;
|
192 |
background-color: #fff;
|
193 |
}
|
194 |
.ecwd_shortcode_notice{
|
195 |
+
margin-left: 196px;
|
196 |
+
margin-top: 0px;
|
197 |
}
|
198 |
.ecwd_shortcode_params{
|
199 |
padding: 12px;
|
201 |
.ecwd_shortcode_content *{
|
202 |
font-size: 14px;
|
203 |
}
|
204 |
+
.ecwd_shortcode_content{
|
205 |
+
margin-top: 5px;
|
206 |
+
}
|
207 |
.ecwd_shortcode_params label{
|
|
|
208 |
display: inline-block;
|
209 |
}
|
210 |
.ecwd_shortcode_content{
|
211 |
background: #fff;
|
212 |
}
|
213 |
.ecwd_shortcode_header{
|
214 |
+
background: #ffffff;
|
215 |
+
/*border-bottom: 1px solid #ddd;*/
|
216 |
padding: 0;
|
217 |
min-height: 36px;
|
218 |
}
|
219 |
.ecwd_shortcode_menu{
|
220 |
background: #FFF;
|
221 |
display: block;
|
222 |
+
border-bottom: 1px solid #e6e6e6;
|
223 |
+
height: 35px;
|
224 |
}
|
225 |
.ecwd_shortcode_menu div{
|
226 |
float:left;
|
227 |
+
border-left: 1px solid #e6e6e6;
|
228 |
background: #ffffff;
|
229 |
+
padding: 11px 8px;
|
230 |
text-shadow: 0 1px 1px rgba(255,255,255,0.75);
|
231 |
height: 13px;
|
232 |
cursor: pointer;
|
233 |
+
text-align: center;
|
234 |
+
width: 86px;
|
235 |
}
|
236 |
.ecwd_shortcode_menu .ecwd_active_shortcode_menu{
|
237 |
background: #FDFDFD;
|
238 |
border-bottom-color: transparent;
|
239 |
margin-bottom: -1px;
|
240 |
+
height: 12px;
|
241 |
+
border-top: 2px solid #1b7aa6;
|
242 |
}
|
243 |
.ecwd_shortcode_menu .ecwd_active_shortcode_menu:focus{
|
244 |
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30,140,190,.8);
|
342 |
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
|
343 |
vertical-align: top;
|
344 |
}
|
345 |
+
|
346 |
.ecwd_shortcode_buttons{
|
347 |
position: absolute;
|
348 |
bottom: 0;
|
349 |
right: 0;
|
350 |
}
|
351 |
|
352 |
+
#ecwd_shortcode_form{
|
353 |
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
|
354 |
+
}
|
355 |
+
|
356 |
+
#ecwd_shortcode_form .ecwd_general_menu select,
|
357 |
+
#ecwd_shortcode_form .ecwd_general_menu input[type="text"]{
|
358 |
+
width: 190px;
|
359 |
+
}
|
360 |
+
|
361 |
+
#ecwd_shortcode_form .ecwd_general_menu .ecwd_shortcode_params label {
|
362 |
+
width: 180px;
|
363 |
+
}
|
364 |
+
|
365 |
+
#ecwd_shortcode_form .ecwd_views_menu select{
|
366 |
+
width: 310px;
|
367 |
+
}
|
368 |
+
|
369 |
+
#ecwd_shortcode_form .ecwd_views_menu .ecwd_shortcode_params label {
|
370 |
+
width: 60px;
|
371 |
+
}
|
372 |
+
|
373 |
+
#ecwd_shortcode_form .ecwd_filters_menu select{
|
374 |
+
width: 310px;
|
375 |
+
}
|
376 |
+
|
377 |
+
#ecwd_shortcode_form .ecwd_filters_menu .ecwd_shortcode_params label {
|
378 |
+
width: 60px;
|
379 |
+
}
|
380 |
+
|
381 |
+
#ecwd_shortcode_form .ecwd_filters_menu .ecwd_no_filter_text{
|
382 |
+
margin-left: 12px;
|
383 |
+
}
|
384 |
+
|
385 |
+
#ecwd_shortcode_form select,
|
386 |
+
#ecwd_shortcode_form input[type="text"]{
|
387 |
+
height: 22px;
|
388 |
+
}
|
389 |
+
|
390 |
+
.ecwd_shortcode_menu_item.ecwd_active_shortcode_menu[data-menu_name="ecwd_filters_menu"]{
|
391 |
+
border-right: 1px solid #c5c5c5;
|
392 |
+
}
|
393 |
+
|
394 |
</style>
|
395 |
<script>
|
396 |
jQuery(".ecwd_shortcode_menu_item").click(function () {
|
views/widgets.php
CHANGED
@@ -196,8 +196,10 @@ class ECWD_Widget extends WP_Widget {
|
|
196 |
|
197 |
}
|
198 |
|
199 |
-
if
|
200 |
-
|
201 |
-
add_action('widgets_init', create_function('', 'register_widget("ECWD_Widget");'));
|
202 |
}
|
203 |
|
|
|
|
|
|
196 |
|
197 |
}
|
198 |
|
199 |
+
if(defined('ECWD_MAIN_FILE') && is_plugin_active(ECWD_MAIN_FILE)) {
|
200 |
+
add_action('widgets_init', 'ecwd_register_widget');
|
|
|
201 |
}
|
202 |
|
203 |
+
function ecwd_register_widget(){
|
204 |
+
register_widget("ECWD_Widget");
|
205 |
+
}
|