Skip to content
Snippets Groups Projects
Commit d23a210a authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Home: add animation and fix CSS of feed

parent d76153b9
No related branches found
No related tags found
No related merge requests found
Pipeline #8301 failed
...@@ -2550,7 +2550,10 @@ div[dropzone]:hover { ...@@ -2550,7 +2550,10 @@ div[dropzone]:hover {
pointer-events: none; pointer-events: none;
} }
/* -- feed (home page) -- */ /**********
feed (home page)
**********/
.feed { .feed {
.card { .card {
background-color: rgba(0,0,0,0.3); background-color: rgba(0,0,0,0.3);
...@@ -2565,13 +2568,16 @@ div[dropzone]:hover { ...@@ -2565,13 +2568,16 @@ div[dropzone]:hover {
list-style: unset; list-style: unset;
padding-left: 40px; padding-left: 40px;
} }
a {
color: inherit;
}
.feed_header, .feed_header,
.card .header { .card .header {
height: 25px; height: 25px;
color: grey !important; color: grey !important;
a { a:hover {
color: inherit; color: $positive !important;
} }
.avatar { .avatar {
margin-top: -6px; margin-top: -6px;
...@@ -2599,6 +2605,11 @@ div[dropzone]:hover { ...@@ -2599,6 +2605,11 @@ div[dropzone]:hover {
text-align: start; text-align: start;
color: lightgrey !important; color: lightgrey !important;
} }
.feed-footer,
.card .footer {
a:hover {
color: $positive !important;
}
}
} }
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"author": { "author": {
"name": "Benoit Lavenier", "name": "Benoit Lavenier",
"url": "@BenoitLavenier", "url": "@BenoitLavenier",
"avatar": "http://localhost:9200/user/profile/38MEAZN68Pz1DTvT3tqgxx4yQP6snJCQhPqEFxbDk4aE/_image/avatar.png" "avatar": "https://g1.data.duniter.fr/user/profile/38MEAZN68Pz1DTvT3tqgxx4yQP6snJCQhPqEFxbDk4aE/_image/avatar.png"
}, },
"items": [ "items": [
{ {
......
...@@ -606,6 +606,7 @@ function HomeController($scope, $state, $timeout, $ionicHistory, $translate, $ht ...@@ -606,6 +606,7 @@ function HomeController($scope, $state, $timeout, $ionicHistory, $translate, $ht
return res.concat(item); return res.concat(item);
}, []); }, []);
$scope.feed = feed; $scope.feed = feed;
}) })
.error(function(data, status) { .error(function(data, status) {
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
</div> </div>
</div> </div>
<div class="center animate-fade-in animate-show-hide ng-hide" ng-show="!loading && !error"> <div class="center animate-show-hide ng-hide" ng-show="!loading && !error">
<!-- Help tour (NOT ready yet for small device) --> <!-- Help tour (NOT ready yet for small device) -->
<button type="button" <button type="button"
...@@ -125,38 +125,42 @@ ...@@ -125,38 +125,42 @@
</h3> </h3>
<!-- feed items --> <!-- feed items -->
<div ng-repeat="item in feed.items" <div class="animate-show-hide ng-hide" ng-show="feed">
class="card padding"> <div ng-repeat="item in feed.items"
class="card padding ">
<div class="header ">
<!-- author --> <div class="header ">
<i ng-if="item.author.avatar" class="avatar" style="background-image: url({{item.author.avatar}});"></i> <!-- author -->
<a ng-class="{'avatar-left-padding': item.author.avatar}" class="author" <i ng-if="item.author.avatar" class="avatar" style="background-image: url({{item.author.avatar}});"></i>
ng-click="item.author.url && openLink($event, item.author.url)"> <a ng-class="{'avatar-left-padding': item.author.avatar}" class="author"
{{item.author.name}} ng-click="item.author.url && openLink($event, item.author.url)">
</a> {{item.author.name}}
</a>
<!-- time -->
<a ng-if="item.time" <!-- time -->
title="{{item.time|formatDate}}" <a ng-if="item.time"
ng-click="openLink($event, item.url)" title="{{item.time|formatDate}}"
class="item-note"> ng-click="openLink($event, item.url)"
<small><i class="icon ion-clock"></i>&nbsp;{{item.time|formatFromNow}}</small> class="item-note ">
</a> <small><i class="icon ion-clock"></i>&nbsp;{{item.time|formatFromNow}}</small>
</a>
</div>
<!-- title -->
<h2 class="title feed-title">
<a ng-click="openLink($event, item.url)">{{item.title}}</a></h2>
<div ng-if="item.content"
class="content feed-content"
trust-as-html="item.content"></div>
<!-- footer -->
<h4 class="card-footer feed-footer text-right positive-100">
<a ng-click="openLink($event, item.url)">
<span ng-if="item.truncated" translate>HOME.READ_MORE</span>
<span ng-if="!item.truncated" translate>COMMON.BTN_SHOW</span>
<i class="icon ion-chevron-right"></i>
</a>
</h4>
</div> </div>
<!-- title -->
<h2 class="title feed-title">
<a ng-click="openLink($event, item.url)">{{item.title}}</a></h2>
<div ng-if="item.content"
class="content feed-content"
trust-as-html="item.content"></div>
<h4 class="card-footer feed-footer text-right positive-100">
<a ng-click="openLink($event, item.url)">
<span ng-if="item.truncated" translate>HOME.READ_MORE</span>
<span ng-if="!item.truncated" translate>COMMON.BTN_SHOW</span>
<i class="icon ion-chevron-right"></i>
</a>
</h4>
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment