prepare urgent bugfix release 2.5.4 - this: 2.5.4d6

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2473635 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
pewgeuges 2021-02-12 10:18:31 +00:00
parent b9476b682e
commit b009311766
10 changed files with 317 additions and 119 deletions

View file

@ -8,7 +8,7 @@
/* Version: 2.5.4
Last modified: 2021-01-30T0113+0100
Last modified: 2021-02-12T1051+0100
Classes recommended for Custom CSS are listed in
@ -123,11 +123,24 @@ word-break: break-word;
overflow-wrap: anywhere;
word-wrap: anywhere;
word-break: break-all;
These rules turn out useless for the purpose and are commented out:
word-wrap: break-word;
overflow-wrap: break-word;
- Bugfix: Reference container, tooltips: URL wrap: enable the 'word-wrap: anywhere' rule, thanks to @rebelc0de bug report.
@since 2.5.4
@reporter @rebelc0de
@link https://wordpress.org/support/topic/footnotes-on-mobile-phones/#post-14037101
*/
.footnote_url_wrap {
overflow-wrap: break-word;
word-wrap: break-word;
word-wrap: anywhere;
overflow-wrap: anywhere;
word-break: break-all;
}
/*****************************************************
@ -164,6 +177,9 @@ Classes:
@since 2.1.1 Referrers: line height 0 to fix superscript, thanks to @cwbayer bug report
@see <https://wordpress.org/support/topic/footnote-number-in-text-superscript-disrupts-leading/>
@since 2.5.4 Bugfix: Referrers: fix vertical alignment, font size and position (static) for cross-theme stability, thanks to @tomturowski bug report.
@link https://wordpress.org/support/topic/in-line-superscript-ref-rides-to-high/
*/
.footnote_referrer,
@ -189,6 +205,9 @@ Classes:
.footnote_plugin_tooltip_text {
line-height: 0;
vertical-align: super;
font-size: smaller;
position: static;
cursor: pointer;
}