From 8058c059d7581a908169d325f38aa5226f472f18 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 22 Oct 2016 18:57:58 +0200 Subject: [PATCH 1/2] CSS line-height bug with sup in dates https://github.com/FreshRSS/FreshRSS/issues/534#issuecomment-255519269 https://www.cs.tut.fi/~jkorpela/www/linespacing.html --- p/themes/base-theme/template.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index 5b3389129..cc36c3ffa 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -44,6 +44,12 @@ p { margin: 1em 0 0.5em; font-size: 1em; } +sup { + line-height: 25px; + position: relative; + top: -0.8em; + vertical-align: baseline; +} /*=== Images */ img { From f260bfc251ace92fdd36b833740ec5c1f43b617b Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 22 Oct 2016 19:11:06 +0200 Subject: [PATCH 2/2] Changelog CSS line-height bug https://github.com/FreshRSS/FreshRSS/issues/534#issuecomment-255519269 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84db24290..08e99d641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ * I18n * Fix some messages during installation [#1339](https://github.com/FreshRSS/FreshRSS/pull/1339) * UI + * Fix CSS line-height bug with in dates (English, Russian, Turkish) [#1340](https://github.com/FreshRSS/FreshRSS/pull/1340) * Download icon 💾 for podcasts [#1236](https://github.com/FreshRSS/FreshRSS/issues/1236) * SimplePie * Fix auto-discovery of RSS feeds in Web pages served as `text/xml` [#1264](https://github.com/FreshRSS/FreshRSS/issues/1264)