upcoming 2.1.4 was not ready, instead thanks for testing 2.1.4d8, to be shared on Forum too

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2431035 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
pewgeuges 2020-12-03 17:38:14 +00:00
parent 95ed6631e2
commit 6e0698293c
18 changed files with 439 additions and 444 deletions

View file

@ -4,9 +4,9 @@
* Created-Date: 15.05.14
* Created-Time: 16:21
* Since: 1.0
* Version: 2.1.4d7
* Version: 2.1.4d8
*
* Last modified: 2020-12-03T0836+0100
* Last modified: 2020-12-03T1834+0100
*/
@ -261,28 +261,30 @@ when hovered in some themes, not in others:
}
/*
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.
These rules are just defauls preventing the table from filling the width.
They are not very effective by lack of table-layout: fixed;
since 2.1.4 settings are optionally available, with table-layout: fixed;
By default, the backlink column is auto-expanding to fit widest.
Not using 'max-content' as that causes no-wrap and overflows.
These are overridden if settings are enabled.
*/
.footnote_plugin_index,
.footnote_plugin_index_combi {
max-width: 140px;
width: 2em;
max-width: 100px;
width: 2.5em;
}
*/
/*
Responsive
*/
@media only screen and (max-width: 768px) {
.footnote_plugin_index,
.footnote_plugin_index_combi {
max-width: 100px;
max-width: 80px;
}
}
/****************************************************************
Footnotes printing style rules

View file

@ -4,17 +4,18 @@
* Created-Date: 15.05.14
* Created-Time: 16:21
* Since: 1.0
* Version: 2.1.4d7
* Version: 2.1.4d8
*
* Last modified: 2020-12-03T0837+0100
* Last modified: 2020-12-03T1834+0100
*/
/* MCI Footnotes logo
*
* The classes with 'heading' fix display in dashboard
* See class/config.php and css/public.css
*/
/*****************************************************
MCI Footnotes logo
The classes with 'heading' fix display in dashboard
See class/config.php and css/public.css
*/
.postbox-header {
position: relative;
@ -38,7 +39,7 @@
left: 96px;
}
/*
/*************************************************************************
On User Request: limited to a number of IDs to not affect all dashboards
<https://wordpress.org/support/topic/all-input-have-width-80/>
*/
@ -119,7 +120,7 @@ span.footnote_highlight_placeholder {
text-align: center !important;
}
/*
/*********************************************************
initialized from style attributes in templates
IE doesnt support nth child, but these are not critical
*/
@ -143,6 +144,10 @@ IE doesnt support nth child, but these are not critical
white-space: nowrap;
}
#settings-other tr td:nth-child(2) {
width: 30%;
}
.footnotes-description {
padding: 0 10%;
}
@ -150,7 +155,3 @@ 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%;
}