diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-26 14:45:22 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-26 14:45:22 +0100 |
commit | 17e7b276f6c647bc65cb34dfcb1c395e528ef8a3 (patch) | |
tree | f2e11be847229780ae3dd18c40ecacc0411ed182 | |
parent | 306ce3819ebdf761085b9a1247f62e01bf4c5adf (diff) | |
download | volse-hubzilla-17e7b276f6c647bc65cb34dfcb1c395e528ef8a3.tar.gz volse-hubzilla-17e7b276f6c647bc65cb34dfcb1c395e528ef8a3.tar.bz2 volse-hubzilla-17e7b276f6c647bc65cb34dfcb1c395e528ef8a3.zip |
we also need nofinish in the object. css fices
-rw-r--r-- | include/event.php | 2 | ||||
-rw-r--r-- | view/css/conversation.css | 1 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 5 |
3 files changed, 6 insertions, 2 deletions
diff --git a/include/event.php b/include/event.php index a3765a145..539bfe484 100644 --- a/include/event.php +++ b/include/event.php @@ -789,6 +789,7 @@ function event_store_item($arr, $event) { 'title' => $arr['summary'], 'start' => $arr['start'], 'finish' => $arr['finish'], + 'nofinish' => $arr['nofinish'], 'description' => $arr['description'], 'location' => $arr['location'], 'adjust' => $arr['adjust'], @@ -933,6 +934,7 @@ function event_store_item($arr, $event) { 'title' => $arr['summary'], 'start' => $arr['start'], 'finish' => $arr['finish'], + 'nofinish' => $arr['nofinish'], 'description' => $arr['description'], 'location' => $arr['location'], 'adjust' => $arr['adjust'], diff --git a/view/css/conversation.css b/view/css/conversation.css index 26478aa9c..24a22defb 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -253,7 +253,6 @@ a.wall-item-name-link { font-weight: bold; } -.event-end, .event-description { padding-bottom: 10px; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 91e684aaa..fe6f10365 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -858,13 +858,16 @@ nav .acpopup { } .wall-event-item { - padding: 10px 10px 0px 10px; + padding: 10px; color: #fff; background-color: #3A87AD; /* should reflect calendar color */ border-top-left-radius: $radiuspx; border-top-right-radius: $radiuspx; } +.vevent .event-end { + padding-bottom: 10px; +} #event-summary-text { margin-top: 15px; |