blob: ab3001ee4243391cfaa062d01ac41425b1420012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*=== 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 {
background: $grey-lighter;
border-left-color: $main-first;
}
&.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 {
color: $main-font-color;
font-size: 0.85rem;
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;
}
}
|