Skip to content

Commit 2173860

Browse files
committed
Fixes #1480: Extract item content is sometimes unexpectedly colored
Version bump for 1.16.7
1 parent e11d8a7 commit 2173860

File tree

4 files changed

+51
-113
lines changed

4 files changed

+51
-113
lines changed

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
To be released
1+
2025-12-27 Lars Windolf <lars.windolf@gmx.de>
22

33
Version 1.16.7
44

@@ -15,6 +15,9 @@ To be released
1515

1616
* Fixes #1477: bsky.app links not being used
1717
(Lars Windolf)
18+
19+
* Fixes #1480: Extract item content is sometimes unexpectedly colored
20+
(Lars Windolf)
1821

1922

2023
2025-10-30 Lars Windolf <lars.windolf@gmx.de>

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dnl Process this file with autoconf to produce a configure script.
22

3-
AC_INIT([liferea],[1.16.6],[liferea-devel@lists.sourceforge.net])
3+
AC_INIT([liferea],[1.16.7],[liferea-devel@lists.sourceforge.net])
44
AC_CANONICAL_HOST
55
AC_CONFIG_SRCDIR([src/feedlist.c])
66

css/liferea.css

Lines changed: 2 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ strong, b {
128128
font-weight: 600;
129129
}
130130

131-
a {
132-
color: var(--primary);
131+
a[href] {
132+
color: var(--primary);
133133
}
134134

135135
div.item header h1 a:not(.missingTitle) {
@@ -240,56 +240,6 @@ img.gravatar {
240240
margin:0px;
241241
}
242242

243-
/* styles for the item description (currently also used for
244-
the feed description) */
245-
table.itemhead, table.feedhead {
246-
margin:0;
247-
width:100%;
248-
border:0;
249-
border-bottom: 2px solid var(--box-bg);
250-
clear:both;
251-
color: var(--text-color);
252-
}
253-
254-
.itemhead, .feedhead {
255-
// FIXME background-color: #GTK-COLOR-MID;
256-
}
257-
258-
table.itemhead * a.itemhead {
259-
text-decoration:none;
260-
color: var(--text-color);
261-
font-weight:bold;
262-
}
263-
264-
table.itemhead * td {
265-
padding-top: 4px;
266-
}
267-
268-
td.head_favicon {
269-
width: 20px;
270-
padding-left: 10px;
271-
vertical-align: middle;
272-
}
273-
274-
td.head_title {
275-
padding:2px 5px;
276-
width: 100%;
277-
vertical-align: middle;
278-
}
279-
280-
table.headmeta {
281-
// FIXME: background:#GTK-COLOR-BG;
282-
width:100%;
283-
border:0;
284-
border-bottom: 1px solid var(--box-bg);
285-
margin:0;
286-
}
287-
288-
table.headmeta td {
289-
padding:1px 6px 1px 12px;
290-
font-size:0.9em;
291-
}
292-
293243
.hidden {
294244
visibility:hidden;
295245
display:none;
@@ -325,7 +275,6 @@ div.comment_title {
325275
padding-left:6px;
326276
padding-right:6px;
327277
font-weight:bold;
328-
// FIXME: background: var(--box-bg);
329278
}
330279

331280
a.favicon {
@@ -363,7 +312,6 @@ a.favicon img {
363312
pre.errorOutput {
364313
margin:10px 15px;
365314
padding:5px;
366-
border:2px solid var(--box-bg); // FIXME
367315
background: var(--box-bg);
368316
overflow:auto;
369317
}
@@ -397,47 +345,6 @@ ins {
397345
color:white;
398346
}
399347

400-
div.photoheader {
401-
margin:10px 0;
402-
padding-left:10px;
403-
padding-right:10px;
404-
//background-color:#GTK-COLOR-DARK;
405-
//color:#GTK-COLOR-TEXT;
406-
}
407-
408-
.video-embed {
409-
position: relative;
410-
max-width: 700px;
411-
width: 100%;
412-
margin-bottom: 10px;
413-
}
414-
415-
.video-embed .thumb {
416-
max-width: 700px;
417-
width: 100%;
418-
}
419-
420-
.video-embed .play-btn {
421-
position: absolute;
422-
max-width: 700px;
423-
width: 100px;
424-
height: 100px;
425-
left: 50%;
426-
top: 50%;
427-
transform: translate(-50%, -50%);
428-
}
429-
430-
.video-embed .play-btn svg {
431-
transition: all .3s ease;
432-
fill: #fff;
433-
}
434-
435-
.video-embed .play-btn:hover svg,
436-
.video-embed .play-btn:focus svg {
437-
cursor: pointer;
438-
fill: #ddd;
439-
}
440-
441348
#enclosureVideo select,
442349
#enclosureAudio select {
443350
max-width: 100%;

css/user.css

Lines changed: 44 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,46 @@
3535
3636
*/
3737

38-
/* Item display rendering header table (with title, categories...) */
39-
// table.itemhead { }
40-
41-
/* Feed display rendering header table (with title, categories...) */
42-
// table.feedhead { }
43-
44-
/* 1st <td> of feed/item table display containing favicon */
45-
// td.head_favicon { }
38+
/* color definitions */
39+
//:root {
40+
// --text-color: rgb(51, 51, 51);
41+
// --text-color-light: rgb(120, 120, 120);
42+
// --primary: rgb(28, 118, 228);
43+
// --body-bg: #fff;
44+
// --box-bg: rgba(135, 135, 135, 0.085);
45+
// --box-radius: 0.35rem;
46+
// --box-padding: 0.75rem 1.5rem;
47+
// --box-margin: 0.75rem 0;
48+
// --box-text-color: #111;
49+
//
50+
// --error-bg: #ffa;
51+
//
52+
// --body-font-family: "Red Hat Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
53+
// --body-font-scale: 0.95;
54+
// --body-font-size: calc(var(--body-font-scale) * clamp(16px, 1vw, 18px));
55+
// --body-font-weight: normal;
56+
//
57+
// --preferred-content-width: 90ch; /* The preferred width for the readable content */
58+
//}
59+
60+
/* dark style overrides */
61+
//@media (prefers-color-scheme: dark) {
62+
// :root {
63+
// --text-color: #f6f6f6;
64+
// --text-color-light: #bbb;
65+
// --primary: rgb(144, 194, 255);
66+
// --body-bg: #121212;
67+
// --box-bg: rgba(135, 135, 135, 0.1);
68+
// --box-text-color: #fff;
69+
// color-scheme: dark;
70+
// }
71+
//}
72+
73+
/* feed/item display containing favicon */
4674
// a.favicon { }
4775
// a.favicon img { }
4876

49-
/* 2nd <td> of feed/item table display containing title */
50-
// td.head_title { }
51-
52-
/* Metadata display table (inside header table) */
53-
// table.headmeta { }
54-
55-
/* Header table fields to different item metadata */
77+
/* Header fields for different item metadata */
5678
// .author, .categories, .source { }
5779
// .date { }
5880

@@ -75,6 +97,13 @@
7597
// #errors { }
7698
// pre.errorOutput { }
7799

100+
/* Embedded video styles */
101+
// #enclosureVideo select,
102+
// #enclosureAudio select { }
103+
104+
// #enclosureVideo select option,
105+
// #enclosureAudio select option { }
106+
78107
/* namespace specific styles */
79108

80109
/* Gravatar embedding */
@@ -87,4 +116,3 @@
87116
// .slash { }
88117
// .slashSection, .slashDepartment { }
89118
// .slashValue { }
90-

0 commit comments

Comments
 (0)