summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-24 12:09:30 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-24 12:09:30 +0100
commit43dd45535e916a01e163a32de2f2d5b06e580d80 (patch)
treed8318c1347224b57c3d9a068f138e06279eaf14c
parent2e8d6180e244c1a8fdef9a79841434fe9d7a1d4c (diff)
fix #134 by using a gradient
-rw-r--r--CHANGELOG.md3
-rw-r--r--css/content.css11
2 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 177f05bbc..b389a1f16 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+owncloud-news (4.2.2)
+* **Enhancement**: Use a light gradient at the bottom of the feed when no items are left to autopage
+
owncloud-news (4.2.1)
* **Bugfix**: Rewrite relative URLs
diff --git a/css/content.css b/css/content.css
index 19c3709e2..496e362ae 100644
--- a/css/content.css
+++ b/css/content.css
@@ -78,13 +78,14 @@
background-position: calc(50% - 16px) calc(50% - 16px);
}
-/*
#app-content .finished-auto-paging #articles:after {
- background-image: url('../img/logo-icon.svg');
- background-size: 62px 34px;
- background-position: calc(50% - 31px) calc(50% - 17px);
+ background-image: -o-linear-gradient(top, #eee 0%, #FEFEFE 100%);
+ background-image: -moz-linear-gradient(top, #eee 0%, #FEFEFE 100%);
+ background-image: -webkit-linear-gradient(top, #eee 0%, #FEFEFE 100%);
+ background-image: -ms-linear-gradient(top, #eee 0%, #FEFEFE 100%);
+ background-image: linear-gradient(to top, #eee 0%, #FEFEFE 100%);
}
-*/
+
/**
*