release overdue 2.3.0
git-svn-id: https://plugins.svn.wordpress.org/footnotes/tags/2.3.0@2448566 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
1cb44eccd5
commit
5e8a635eaf
18 changed files with 585 additions and 204 deletions
|
@ -2,17 +2,21 @@
|
|||
* Basic responsive layout for the entry content div
|
||||
*
|
||||
* Based on Hello Elementor v2.3.0 Basic responsive layout
|
||||
* themes/hello-elementor/theme.css:8..31
|
||||
* licensed under GNU General Public License v3 or later
|
||||
* themes/hello-elementor/theme.css:8..31
|
||||
* Licensed under GNU General Public License v3 or later;
|
||||
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
*
|
||||
* Since v2.1.4 of Footnotes
|
||||
*
|
||||
* Last modified for v2.2.2 2020-12-15T1004+0100
|
||||
* Last modified for v2.2.5 2020-12-16T1321+0100
|
||||
* Modified for 2.2.2 2020-12-15T1004+0100
|
||||
* Modified for 2.2.5 2020-12-16T1321+0100
|
||||
* Modified for 2.3.0 2020-12-29T0207+0100
|
||||
*
|
||||
* Last modified: 2020-12-29T0210+0100
|
||||
*
|
||||
* The enqueuing of this style sheet is optional and can be
|
||||
* enabled in the Reference container settings.
|
||||
* enabled in the dashboard under General settings >
|
||||
* Reference container > Apply basic responsive page layout.
|
||||
**/
|
||||
|
||||
/***********************************************************
|
||||
|
@ -33,49 +37,64 @@ that would apply if the page were not built with Elementor.
|
|||
This is mainly useful with Hello Elementor, but it may help
|
||||
fix also other themes like Twenty Twenty-One for display in
|
||||
older browsers not yet supporting CSS variables.
|
||||
|
||||
Sources:
|
||||
.entry .entry-content <= Twenty Nineteen
|
||||
*/
|
||||
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry .entry-content,
|
||||
main .entry .entry-content {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
padding: 0 10px;
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry .entry-content,
|
||||
main .entry .entry-content {
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry .entry-content,
|
||||
main .entry .entry-content {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry .entry-content,
|
||||
main .entry .entry-content {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry .entry-content,
|
||||
main .entry .entry-content {
|
||||
max-width: 800px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry .entry-content,
|
||||
main .entry .entry-content {
|
||||
max-width: 960px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
*
|
||||
* Version: 2.2.10
|
||||
* Version: 2.3.0
|
||||
*
|
||||
* Classes added to public.css may be added to the
|
||||
* list documenting CSS classes for Custom CSS if
|
||||
|
@ -19,8 +19,9 @@
|
|||
* @see <https://wordpress.org/support/topic/footnote-number-in-text-superscript-disrupts-leading/>
|
||||
* @since 2.1.6 set z-index to maximum 2147483647 to address display issues with overlay content, thanks to @russianicons
|
||||
* @see <https://wordpress.org/support/topic/counter-styles-not-working/>
|
||||
* @since 2.3.0 offset anchors for optional hard links
|
||||
*
|
||||
* Last modified: 2020-12-25T2357+0100
|
||||
* Last modified: 2020-12-31T1211+0100
|
||||
*/
|
||||
|
||||
|
||||
|
@ -76,6 +77,22 @@ word-break: break-all;
|
|||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/*****************************************************
|
||||
Optional hard links
|
||||
|
||||
Anchors with scroll offset
|
||||
*/
|
||||
|
||||
.footnote_item_base,
|
||||
.footnote_referrer_base {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.footnote_item_anchor,
|
||||
.footnote_referrer_anchor {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/*****************************************************
|
||||
Footnote referrers and tooltips
|
||||
|
||||
|
@ -90,25 +107,30 @@ Classes:
|
|||
*/
|
||||
|
||||
.footnote_referrer,
|
||||
.footnote_referrer a,
|
||||
.footnote_referrer:link,
|
||||
.footnote_referrer a:link,
|
||||
.footnote_referrer:hover,
|
||||
.footnote_referrer > a,
|
||||
.footnote_referrer > a:link,
|
||||
.footnote_referrer > a:hover,
|
||||
.footnote_plugin_tooltip_text,
|
||||
.footnote_plugin_tooltip_text:hover,
|
||||
.main-content .footnote_referrer,
|
||||
.main-content .footnote_referrer a,
|
||||
.main-content .footnote_referrer:link,
|
||||
.main-content .footnote_referrer a:link,
|
||||
.footnote_plugin_tooltip_text {
|
||||
.main-content .footnote_referrer:hover,
|
||||
.main-content .footnote_referrer > a,
|
||||
.main-content .footnote_referrer > a:link,
|
||||
.main-content .footnote_referrer > a:hover,
|
||||
.main-content .footnote_plugin_tooltip_text,
|
||||
.main-content .footnote_plugin_tooltip_text:hover {
|
||||
text-decoration: none !important;
|
||||
border-bottom: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.footnote_plugin_tooltip_text {
|
||||
line-height: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.footnote_referrer:hover,
|
||||
.footnote_referrer a:hover,
|
||||
.footnote_plugin_tooltip_text:hover {
|
||||
text-decoration: none;
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/*
|
||||
tooltips
|
||||
|
@ -208,6 +230,7 @@ Classes:
|
|||
.footnote_reference_container_collapse_button = sibling <span>
|
||||
.footnote-reference-container = misleading and inconsistent; alias:
|
||||
.footnotes_table = <table>
|
||||
.footnotes_plugin_reference_row = <tr>
|
||||
.footnote_plugin_index_combi = first <td> if identical footnotes are combined
|
||||
.footnote_plugin_index = first <td> if not
|
||||
.footnote_index = <a> or <span> in first <td> in 3-column table
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
*
|
||||
* Version: 2.2.10
|
||||
* Version: 2.3.0
|
||||
*
|
||||
* Last modified: 2020-12-25T2357+0100
|
||||
* Last modified: 2020-12-31T1026+0100
|
||||
*/
|
||||
|
||||
|
||||
|
@ -100,11 +100,14 @@ Limited to a number of IDs to not affect all dashboards
|
|||
width: 230px;
|
||||
}
|
||||
|
||||
#footnotes_inputfield_reference_container_top_margin,
|
||||
#footnotes_inputfield_reference_container_bottom_margin,
|
||||
#footnotes_inputfield_backlinks_column_width_scalar,
|
||||
#footnotes_inputfield_backlinks_column_max_width_scalar,
|
||||
#footnotes_inputfield_mouse_over_box_font_size_scalar {
|
||||
width: 85px;
|
||||
}
|
||||
|
||||
#footnotes_inputfield_backlinks_column_width_unit,
|
||||
#footnotes_inputfield_backlinks_column_max_width_unit,
|
||||
#footnotes_inputfield_mouse_over_box_font_size_unit {
|
||||
|
|
Reference in a new issue