Merge pull request #1340 from Alkarex/css-dansing

CSS line-height bug with sup in dates
pull/1344/head
Alexandre Alapetite 8 years ago committed by GitHub
commit a93bc5e321
  1. 1
      CHANGELOG.md
  2. 6
      p/themes/base-theme/template.css

@ -39,6 +39,7 @@
* I18n * I18n
* Fix some messages during installation [#1339](https://github.com/FreshRSS/FreshRSS/pull/1339) * Fix some messages during installation [#1339](https://github.com/FreshRSS/FreshRSS/pull/1339)
* UI * UI
* Fix CSS line-height bug with <sup> 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) * Download icon 💾 for podcasts [#1236](https://github.com/FreshRSS/FreshRSS/issues/1236)
* SimplePie * SimplePie
* Fix auto-discovery of RSS feeds in Web pages served as `text/xml` [#1264](https://github.com/FreshRSS/FreshRSS/issues/1264) * Fix auto-discovery of RSS feeds in Web pages served as `text/xml` [#1264](https://github.com/FreshRSS/FreshRSS/issues/1264)

@ -44,6 +44,12 @@ p {
margin: 1em 0 0.5em; margin: 1em 0 0.5em;
font-size: 1em; font-size: 1em;
} }
sup {
line-height: 25px;
position: relative;
top: -0.8em;
vertical-align: baseline;
}
/*=== Images */ /*=== Images */
img { img {

Loading…
Cancel
Save