update trunk for upcoming 2.1.4, thanks for testing 2.1.4d7 to be shared on Forum too

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2430720 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
pewgeuges 2020-12-03 07:55:27 +00:00
parent 75558d98ac
commit 95ed6631e2
12 changed files with 285 additions and 103 deletions

View file

@ -4,9 +4,9 @@
* Created-Date: 15.05.14
* Created-Time: 16:21
* Since: 1.0
* Version: 2.1.4d6
* Version: 2.1.4d7
*
* Last modified: 2020-12-01T0450+0100
* Last modified: 2020-12-03T0836+0100
*/
@ -92,8 +92,8 @@ templates/public/footnote-alternative.html
cursor: auto;
text-align: left;
padding: 12px;
line-height: 1.2em;
font-size: inherit;
line-height: 1.2;
/*font-size: inherit; moved to settings since 2.1.4 */
font-weight: normal;
font-style: normal;
}
@ -229,6 +229,18 @@ reference-container-body.html
text-decoration: none !important;
border-bottom: none !important;
}
.footnote_backlink,
.footnote_plugin_link {
white-space: nowrap;
}
.footnote_index,
.footnote_backlink,
.footnote_plugin_index.pointer,
.footnote_plugin_index_combi.pointer {
cursor: pointer;
}
/*
These rules when enabled cause the backlink to take an overline
when hovered in some themes, not in others:
@ -243,27 +255,24 @@ when hovered in some themes, not in others:
text-decoration: unset;
text-decoration: underline; /*deprioritized to ease customization*/
}
.footnote_plugin_index,
.footnote_plugin_index_combi {
max-width: 140px;
width: 2em; /*auto-expanding column to fit widest*/
}
.footnote_backlink,
.footnote_plugin_link {
white-space: nowrap;
}
.footnote_index,
.footnote_backlink,
.footnote_plugin_index.pointer,
.footnote_plugin_index_combi.pointer {
cursor: pointer;
}
.footnote_plugin_text {
width: unset; /*unset width of text column to fix site issues*/
}
/*
These rules are moved to settings defaulting to this
since 2.1.4
auto-expanding column to fit widest
Not using 'max-content' as that causes no-wrap and overflows.
.footnote_plugin_index,
.footnote_plugin_index_combi {
max-width: 140px;
width: 2em;
}
*/
/*
Responsive
*/

View file

@ -4,9 +4,9 @@
* Created-Date: 15.05.14
* Created-Time: 16:21
* Since: 1.0
* Version: 2.1.4d6
* Version: 2.1.4d7
*
* Last modified: 2020-12-01T0450+0100
* Last modified: 2020-12-03T0837+0100
*/
@ -47,7 +47,8 @@ On User Request: limited to a number of IDs to not affect all dashboards
#footnote_inputfield_placeholder_end_user_defined,
#footnote_inputfield_readon_label,
#footnote_inputfield_references_label,
#footnote_inputfield_custom_css {
#footnote_inputfield_custom_css,
#footnote_inputfield_love {
padding-left: 8px !important;
padding-right: 8px !important;
width: 80% !important;
@ -56,7 +57,18 @@ On User Request: limited to a number of IDs to not affect all dashboards
#footnote_inputfield_custom_hyperlink_symbol,
#footnotes_inputfield_backlinks_terminator_option,
#footnotes_inputfield_backlinks_separator_option {
width: 200px;
width: 230px;
}
#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 {
width: 140px;
}
/*textarea*/
@ -111,23 +123,23 @@ span.footnote_highlight_placeholder {
initialized from style attributes in templates
IE doesnt support nth child, but these are not critical
*/
.expert-lookup tr th:first-child,
.expert-lookup tr td:first-child {
#expert-lookup tr th:first-child,
#expert-lookup tr td:first-child {
width: 170px !important;
}
.expert-lookup tr th:nth-child(2),
.expert-lookup tr td:nth-child(2) {
#expert-lookup tr th:nth-child(2),
#expert-lookup tr td:nth-child(2) {
width: 65px !important;
}
.expert-lookup tr th:nth-child(3),
.expert-lookup tr td:nth-child(3) {
#expert-lookup tr th:nth-child(3),
#expert-lookup tr td:nth-child(3) {
width: 200px !important;
}
.expert-lookup tr td:nth-child(3) input {
#expert-lookup tr td:nth-child(3) input {
width: 190px;
}
.expert-lookup tr th:last-child,
.expert-lookup tr td:last-child {
#expert-lookup tr th:last-child,
#expert-lookup tr td:last-child {
white-space: nowrap;
}
@ -138,3 +150,7 @@ IE doesnt support nth child, but these are not critical
font-size: 1.4em;
font-style: italic;
}
#settings-other tr td:nth-child(2) {
width: 30%;
}