Development preview 2.6.0d1 with AMP compat at work.
Stable Tag is 2.5.10. v2.6.0d0 does already exist on SVN (2456650 2021-01-14). Tooltip timing settings are not yet usable in AMP mode. Tooltip transitions don’t work now, only delays, need to debug. It’s late and we have a deadline, so this is committed as a preview. Thanks for looking into it. git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2497297 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
7b7b8547b1
commit
c5a9af037a
31 changed files with 586 additions and 204 deletions
|
@ -6,8 +6,8 @@
|
|||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
*
|
||||
* @version 2.5.8
|
||||
* @lastmodified 2021-02-28T1320+0100
|
||||
* @version 2.6.0
|
||||
* @lastmodified 2021-03-16T1529+0100
|
||||
*
|
||||
* Classes recommended for Custom CSS:
|
||||
* @see templates/dashboard/customize-css-new.html
|
||||
|
@ -37,9 +37,10 @@
|
|||
*
|
||||
* The first part of the code contains 4 letters showing whether tooltips
|
||||
* are enabled, and if so, which implementation: jQuery or alternative:
|
||||
* nott ➜ no tooltips ➜ -
|
||||
* jqtt ➜ jQuery tooltips ➜ dev-tooltips.css
|
||||
* altt ➜ alternative tooltips ➜ dev-tooltips.css & dev-tooltips-alternative.css
|
||||
* ampt ➜ AMP compatible tooltips ➜ dev-tooltips.css & dev-amp-tooltips.css
|
||||
* jqtt ➜ jQuery tooltips ➜ dev-tooltips.css
|
||||
* altt ➜ alternative tooltips ➜ dev-tooltips.css & dev-tooltips-alternative.css
|
||||
* nott ➜ no tooltips ➜ -
|
||||
*
|
||||
* The second part of the code consists of the 4 letters "brpl", for
|
||||
* Basic Responsive Page Layout, followed by a digit showing if a fix
|
||||
|
@ -65,6 +66,7 @@
|
|||
* @since 2.3.0 offset anchors for optional hard links, thanks to @psychonevro @martinneumannat bug reports
|
||||
* @since 2.4.0 validation error warning box
|
||||
* @since 2.5.0 validation error warning box more paragraphs
|
||||
* @since 2.5.11 AMP compatible tooltips and reference container
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -273,6 +275,14 @@ Classes:
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.collapsed {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.unfolded {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reference container label.
|
||||
*
|
||||
|
|
Reference in a new issue