diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-28 14:47:17 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-28 14:47:17 +0100 |
commit | 7db86a4e0505235b154a1121835861b0b6a76581 (patch) | |
tree | 0d66a0ea10132f73aef5680723ddb464262f6dcd /view/tpl | |
parent | 122d7281f7d4b55ef8adf8791bdab51b4b797ba8 (diff) | |
download | volse-hubzilla-7db86a4e0505235b154a1121835861b0b6a76581.tar.gz volse-hubzilla-7db86a4e0505235b154a1121835861b0b6a76581.tar.bz2 volse-hubzilla-7db86a4e0505235b154a1121835861b0b6a76581.zip |
css fixes
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/event_item_content.tpl | 6 | ||||
-rwxr-xr-x | view/tpl/event_item_header.tpl | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/view/tpl/event_item_content.tpl b/view/tpl/event_item_content.tpl index 868e5ad27..76e0f4616 100644 --- a/view/tpl/event_item_content.tpl +++ b/view/tpl/event_item_content.tpl @@ -1,10 +1,10 @@ {{if $description}} -<div class="event-description"> +<div class="event-item-description"> {{$description}} </div> {{/if}} {{if $location}} -<div class="event-location"> - <span class="event-label">{{$location_label}}</span> <span class="event_location">{{$location}}</span> +<div class="event-item-location"> + <span class="event-item-label">{{$location_label}}</span> <span class="event-item-location">{{$location}}</span> </div> {{/if}} diff --git a/view/tpl/event_item_header.tpl b/view/tpl/event_item_header.tpl index 70ddfd808..9547676e9 100755 --- a/view/tpl/event_item_header.tpl +++ b/view/tpl/event_item_header.tpl @@ -1,11 +1,11 @@ -<div class="event-title"> +<div class="event-item-title"> <h3><i class="icon-calendar"></i> {{$title}}</h3> </div> -<div class="event-start"> - <span class="event-label">{{$dtstart_label}}</span> <span class="dtstart" title="{{$dtstart_title}}">{{$dtstart_dt}}</span> +<div class="event-item-start"> + <span class="event-item-label">{{$dtstart_label}}</span> <span class="dtstart" title="{{$dtstart_title}}">{{$dtstart_dt}}</span> </div> {{if $finish}} -<div class="event-start"> - <span class="event-label">{{$dtend_label}}</span> <span class="dtend" title="{{$dtend_title}}">{{$dtend_dt}}</span> +<div class="event-item-start"> + <span class="event-item-label">{{$dtend_label}}</span> <span class="dtend" title="{{$dtend_title}}">{{$dtend_dt}}</span> </div> {{/if}} |