aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Ansum/_list-view.scss
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-03-31 16:38:46 +0200
committerGravatar GitHub <noreply@github.com> 2019-03-31 16:38:46 +0200
commitd413f67dd28738f4a6d8cf036e00714737f757b8 (patch)
tree1509f631dc8814bcf85d907a292ddd6437a2efcd /p/themes/Ansum/_list-view.scss
parent8dcdde6251ae4dfc690b1a014488df125c5e5cdc (diff)
parent2a935516d850d63a215f9650b96ede102311f7ca (diff)
Merge pull request #2298 from FreshRSS/dev1.14.0
FreshRSS 1.14.0
Diffstat (limited to 'p/themes/Ansum/_list-view.scss')
-rw-r--r--p/themes/Ansum/_list-view.scss92
1 files changed, 92 insertions, 0 deletions
diff --git a/p/themes/Ansum/_list-view.scss b/p/themes/Ansum/_list-view.scss
new file mode 100644
index 000000000..78f100203
--- /dev/null
+++ b/p/themes/Ansum/_list-view.scss
@@ -0,0 +1,92 @@
+/*=== Feed articles */
+.flux {
+ // border-left: 2px solid #ecf0f1;
+ background: $white;
+
+ @include transition(all, 0.15s, ease-in-out);
+
+ &:hover{
+ background: $grey-lighter;
+
+ &:not(.current):hover .item.title {
+ background: $grey-lighter;
+
+
+ }
+ }
+ &.current{
+ border-left-color: $main-first;
+ background: $white;
+ }
+ &.not_read{
+ background: $unread-bg; //--------------------
+ // border-left-color: #FF5300;
+
+ &:hover{
+ background: $unread-bg-light; //--------------------
+ }
+
+ &:not(.current):hover .item.title {
+ background: $unread-bg-light;
+
+
+ }
+ .item.title{
+ a{
+ color: $unread-font-color; //--------------------
+ }
+
+ }
+ .item.website{
+ a{
+ color: $unread-font-color; //--------------------
+ }
+ }
+ .item.date{
+ color: unquote($unread-font-color+"99"); //--------------------
+ }
+}
+
+ &.favorite {
+ background: $fav-light;
+ border-left-color: $fav-bg;
+
+ @include transition(all, 0.15s, ease-in-out);
+
+ &:not(.current):hover .item.title {
+ background: $fav-light;
+ }
+ }
+
+ .website{
+ a{
+ color: $main-font-color;
+ opacity: 0.75;
+ }
+
+ .favicon {
+ padding: 5px;
+ }
+ }
+ .date {
+ font-size: 0.85rem;
+ color: $main-font-color;
+ opacity: 0.75;
+ }
+
+ .bottom {
+ font-size: 1rem;
+ text-align: center;
+ }
+}
+
+.flux_header {
+ font-size: 1rem;
+ cursor: pointer;
+ border-top: 1px solid $grey-light;
+
+ .title {
+ font-size: 1rem;
+ }
+}
+