css fixes
This commit is contained in:
parent
122d7281f7
commit
7db86a4e05
@ -248,12 +248,32 @@ a.wall-item-name-link {
|
|||||||
|
|
||||||
/* event item */
|
/* event item */
|
||||||
|
|
||||||
|
.event-item-title h3 {
|
||||||
|
margin: 0px 0px 10px 0px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-item-description {
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-item-label {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* vevent */
|
||||||
|
|
||||||
.event-title h3 {
|
.event-title h3 {
|
||||||
margin: 0px 0px 10px 0px;
|
margin: 0px 0px 10px 0px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vevent {
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.event-description {
|
.event-description {
|
||||||
|
padding-top: 10px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,29 +24,21 @@
|
|||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.event-wrapper {
|
.event-wrapper,
|
||||||
|
.vevent {
|
||||||
max-width: 700px;
|
max-width: 700px;
|
||||||
height: auto;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.event-owner {
|
.event-owner {
|
||||||
margin-bottom: 15px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.event-owner img {
|
.event-owner img {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.event-buttons,
|
.vevent,
|
||||||
.event-description {
|
.event-buttons {
|
||||||
margin-top: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#event-upload-form {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#event-upload-choose {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
@ -124,3 +124,12 @@ li:hover .group-edit-icon {
|
|||||||
width: 250px;
|
width: 250px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* events tools */
|
||||||
|
|
||||||
|
#event-upload-form {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-upload-choose {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{{if $description}}
|
{{if $description}}
|
||||||
<div class="event-description">
|
<div class="event-item-description">
|
||||||
{{$description}}
|
{{$description}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $location}}
|
{{if $location}}
|
||||||
<div class="event-location">
|
<div class="event-item-location">
|
||||||
<span class="event-label">{{$location_label}}</span> <span class="event_location">{{$location}}</span>
|
<span class="event-item-label">{{$location_label}}</span> <span class="event-item-location">{{$location}}</span>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<div class="event-title">
|
<div class="event-item-title">
|
||||||
<h3><i class="icon-calendar"></i> {{$title}}</h3>
|
<h3><i class="icon-calendar"></i> {{$title}}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="event-start">
|
<div class="event-item-start">
|
||||||
<span class="event-label">{{$dtstart_label}}</span> <span class="dtstart" title="{{$dtstart_title}}">{{$dtstart_dt}}</span>
|
<span class="event-item-label">{{$dtstart_label}}</span> <span class="dtstart" title="{{$dtstart_title}}">{{$dtstart_dt}}</span>
|
||||||
</div>
|
</div>
|
||||||
{{if $finish}}
|
{{if $finish}}
|
||||||
<div class="event-start">
|
<div class="event-item-start">
|
||||||
<span class="event-label">{{$dtend_label}}</span> <span class="dtend" title="{{$dtend_title}}">{{$dtend_dt}}</span>
|
<span class="event-item-label">{{$dtend_label}}</span> <span class="dtend" title="{{$dtend_title}}">{{$dtend_dt}}</span>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
Reference in New Issue
Block a user