diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 3f95fb484..b272e3f0d 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -51,7 +51,10 @@ body a[name]:not([href]) { visibility: hidden; } -body a:hover, body a:focus, body a:active, body a.active, body .btn-link:hover{ +body a:hover, body .btn-link:hover, +body a:focus, body .btn-link:focus, +body a:active, body .btn-link:active, +body a.active, body .btn-link.active { /*color: #59d6e4;*/ color: $link_hover_color; text-decoration: none; @@ -1322,8 +1325,6 @@ section #jotOpen { .wall-item-container a, .wall-item-container .fakelink, .toplevel_item .fakelink, -.toplevel_item .wall-item-container .btn-link, -.wall-item-container .btn-link, .toplevel_item .wall-item-container .wall-item-responses a { color: #555; -webkit-transition: all 0.25s ease-in-out; @@ -1334,7 +1335,6 @@ section #jotOpen { } .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink, -.toplevel_item:hover .wall-item-container:hover :not(.dropdown):not([role=menuitem]) > .btn-link, .toplevel_item:hover .wall-item-container:hover .wall-item-responses a, .toplevel_item:hover .wall-item-content a, .toplevel_item:hover .wall-item-name, @@ -1550,19 +1550,19 @@ code > .hl-main { } /* item social action buttons */ -.wall-item-actions, .wall-item-actions a { +.wall-item-actions, .wall-item-actions a, .wall-item-actions button { font-size: 13px; color: #555; margin-top: 15px; margin-bottom: 0; } -.wall-item-actions a.active { +.wall-item-actions .active { font-weight: bold; } -.wall-item-actions a:hover { +.wall-item-actions :hover { color: #555; } -.wall-item-actions a.active:hover { +.wall-item-actions .active:hover { color: $link_color; } .wall-item-actions-left { diff --git a/view/theme/frio/templates/event_form.tpl b/view/theme/frio/templates/event_form.tpl index ebbf83785..749218e91 100644 --- a/view/theme/frio/templates/event_form.tpl +++ b/view/theme/frio/templates/event_form.tpl @@ -84,33 +84,33 @@ *}}
{{$item.name}} - {{if $item.owner_url}}{{$item.via}} {{$item.owner_name}}{{/if}} +
{{$item.name}} + {{if $item.owner_url}}{{$item.via}} {{$item.owner_name}}{{/if}} {{if $item.lock}} {{/if}}
@@ -161,7 +161,7 @@
diff --git a/view/theme/frio/templates/wall_thread.tpl b/view/theme/frio/templates/wall_thread.tpl
index 923186ffa..f276ee6f0 100644
--- a/view/theme/frio/templates/wall_thread.tpl
+++ b/view/theme/frio/templates/wall_thread.tpl
@@ -40,11 +40,11 @@ as the value of $top_child_total (this is done at the end of this file)
{{if $item.thread_level<3}}
-
+
{{$item.num_comments}}
{{$item.hide_text}}
+ class="hide-comments">{{$item.hide_text}}
@@ -184,8 +184,8 @@ as the value of $top_child_total (this is done at the end of this file)
{{* contact info header*}}
{{if $item.thread_level==1}}
-
{{$item.name}} - {{if $item.owner_url}}{{$item.via}} {{$item.owner_name}}{{/if}} +{{*this is the media body for comments - this div must be closed at the end of the file *}}
{{$item.name}} + {{if $item.owner_url}}{{$item.via}} {{$item.owner_name}}{{/if}} {{if $item.lock}} {{/if}}
@@ -220,7 +220,7 @@ as the value of $top_child_total (this is done at the end of this file)- {{$item.name}} + {{$item.name}} {{$item.ago}} {{if $item.location}} — ({{$item.location}}){{/if}} @@ -278,7 +278,7 @@ as the value of $top_child_total (this is done at the end of this file)
@@ -287,23 +287,32 @@ as the value of $top_child_total (this is done at the end of this file)
{{* Buttons for like and dislike *}}
{{if $item.vote}}
{{if $item.vote.like}}
- {{$item.vote.like.1}}
+ {{$item.vote.like.1}}
+ {{/if}}
+ {{if $item.vote.like AND $item.vote.dislike}}
+ •
{{/if}}
{{if $item.vote.dislike}}
- {{$item.vote.dislike.1}}
+ {{$item.vote.dislike.1}}
{{/if}}
+ {{if ($item.vote.like OR $item.vote.dislike) AND $item.comment}}
+ •
+ {{/if}}
{{/if}}
{{* Button to open the comment text field *}}
{{if $item.comment}}
- {{$item.switchcomment}}
+ {{$item.switchcomment}}
{{/if}}
{{* Button for sharing the item *}}
{{if $item.vote}}
{{if $item.vote.share}}
- {{$item.vote.share.1}}
+ {{if $item.vote.like OR $item.vote.dislike OR $item.comment}}
+ •
+ {{/if}}
+ {{$item.vote.share.1}}
{{/if}}
{{/if}}