#glm-event-view-select{
width: 125px;
}
-#glm-event-detail-dates:before {
+.glm-event-date:before {
+ /* top: 0px; */
+ content: "";
+ background-image: url(../assets/calendar-icon-24x24.png);
+ background-height: 24px;
+ background-width: 24px;
+ position: absolute;
+ width: 24px;
+ height: 24px;
+ left: -36px;
+}
+.glm-event-date {
+ margin-bottom: 15px;
+}
+.glm-event-times {
+ margin-bottom: 15px;
+}
+.glm-event-times:before {
content: "";
background-image: url("../assets/time-icon-24x24.png");
background-height: 24px;
position: absolute;
width: 24px;
height: 24px;
- top: 6px;
+ /* top: 6px; */
left: -35px;
}
#glm-event-detail-location {
color: black;
}
.month-nav-container{
-
+
}
.month-nav, .year-nav{
.month-nav:hover, .year-nav:hover{
cursor: pointer;
border: 1px solid black;
-
+
}
#event-date-toggle{
width: 130px;
* Plugin URI: http://www.gaslightmedia.com/
* Description: Gaslight Media Members Database.
- * Version: 1.6.66
+ * Version: 1.6.67
* Author: Chuck Scott
* Author URI: http://www.gaslightmedia.com/
* @author Chuck Scott <cscott@gaslightmedia.com>
* @license http://www.gaslightmedia.com Gaslightmedia
- * @version 1.6.66
+ * @version 1.6.67
*/
* so that we're sure the other add-ons see an up to date
* version from this plugin.
*/
-define('GLM_MEMBERS_EVENTS_PLUGIN_VERSION', '1.6.66');
+define('GLM_MEMBERS_EVENTS_PLUGIN_VERSION', '1.6.67');
define('GLM_MEMBERS_EVENTS_PLUGIN_DB_VERSION', '0.1.4');
// This is the minimum version of the GLM Members DB plugin require for this plugin.
<div class="small-12 medium-{if $event.locations || $event.use_member_location.value || $event.other_ref_dest}7{else}12{/if} column">
<div id="glm-event-detail-dates">
{foreach $event.recurrences as $rec}
- <div>
- <span>
- {if !$event.all_day}
+ <div class="glm-event-date">
+ <span class="date-tag"></span>
+ <span class="glm-date-display">
- <strong>
- {if $rec.start_time.time == $rec.end_time.time || $rec.start_time_only.value}
- {$rec.start_time.time|strtotime|date_format:"%l:%M %P"}
- {else}
- {$rec.start_time.time|strtotime|date_format:"%l:%M %P"} - {$rec.end_time.time|strtotime|date_format:"%l:%M %P"}
- {/if}
- </strong>
- {/if}
- </span>
- {if $rec.name && $rec.name != 'Imported' && $rec.name != 'Imported Event Schedule' }
- {$rec.name}
- {/if}
-
- ( {if $event.recurrences.0.recurring.value == 1} Occurring {/if}
-
-
- {$rec.from_date.timestamp|date_format:"%m/%d/%Y"}
+ {if $event.recurrences.0.recurring.value == 1} Occurring {/if}
+
+ {$rec.from_date.timestamp|date_format:"%A, %B %e, %Y"}
{if $rec.from_date.date != $rec.to_date.date}
- - {$rec.to_date.timestamp|date_format:"%m/%d/%Y"}
+ - {$rec.to_date.timestamp|date_format:"%B %e, %Y"}
{else if $rec.specific_dates}
- - {$rec.specific_dates|@end|date_format:"%m/%d/%Y"}
+ - {$rec.specific_dates|@end|date_format:"%B %e, %Y"}
{/if}
+ </span>
+
{if $rec.day_of_week.names|@count < 7 && $rec.day_of_week.names|@count > 0 }
<span class="agenda-days-of-week">
on
</span>
{/if}
- )
+
+ </div>
+ <div class="glm-event-times">
+
+ <span class="time-tag"></span>
+
+ <span>
+ {if !$event.all_day}
+
+ {if $rec.start_time.time == $rec.end_time.time || $rec.start_time_only.value}
+ {$rec.start_time.time|strtotime|date_format:"%l:%M %P"}
+ {else}
+ {$rec.start_time.time|strtotime|date_format:"%l:%M %P"} - {$rec.end_time.time|strtotime|date_format:"%l:%M %P"}
+ {/if}
+ {/if}
+ </span>
+ {if $rec.name && $rec.name != 'Imported' && $rec.name != 'Imported Event Schedule' }
+ {$rec.name}
+ {/if}
+
+
+
+
+
{if $expired} <span style="color:red;"> (Expired) </span> {/if}
</div>
{/foreach}