developer version 2.0.9d0 (delta 0) in response to user request
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2414450 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
89e6d9e9d7
commit
b57b80f123
8 changed files with 58 additions and 32 deletions
|
@ -4,9 +4,9 @@
|
|||
* Created-Date: 15.05.14
|
||||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
* Version: 2.0.8
|
||||
* Version: 2.0.9d0
|
||||
*
|
||||
* Last modified: 2020-11-06T1511+0100
|
||||
* Last modified: 2020-11-07T1424+0100
|
||||
*/
|
||||
|
||||
|
||||
|
@ -34,19 +34,21 @@
|
|||
/* Inline footnote referrers
|
||||
* aka superscript footnote anchors
|
||||
*
|
||||
* Class footnote_plugin_tooltip_text is the referrer and surroundings
|
||||
* referrer and surroundings:
|
||||
* .footnote_referrer = enclosing <a>
|
||||
* .footnote_plugin_tooltip_text = inner <sup>
|
||||
*/
|
||||
|
||||
.footnote_referrer,
|
||||
.footnote_plugin_tooltip_text {
|
||||
text-decoration: none !important;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
}
|
||||
.footnote_plugin_tooltip_text {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
}
|
||||
.footnote_referrer:hover,
|
||||
.footnote_plugin_tooltip_text:hover {
|
||||
text-decoration: underline;
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/* tooltip infobox */
|
||||
|
@ -102,12 +104,14 @@ span.footnote_tooltip {
|
|||
/* fully clickable, not sign only */
|
||||
.footnote_reference_container_collapse_button {
|
||||
cursor: pointer;
|
||||
font-size: 1.2em !important;
|
||||
padding-left: .5em;
|
||||
}
|
||||
.footnote_container_prepare > p > span:last-child a {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
.footnote_container_prepare > p > span:last-child a:hover {
|
||||
text-decoration: underline;
|
||||
text-decoration: underline !important;
|
||||
color: #008800;
|
||||
}
|
||||
|
||||
|
@ -138,7 +142,7 @@ span.footnote_tooltip {
|
|||
text-decoration: underline !important;
|
||||
}
|
||||
.footnote_plugin_index {
|
||||
cursor: pointer;
|
||||
cursor: pointer;
|
||||
overflow-wrap: unset;
|
||||
word-wrap: unset;
|
||||
word-wrap: normal !important;
|
||||
|
@ -149,7 +153,7 @@ span.footnote_tooltip {
|
|||
overflow: hidden;
|
||||
}
|
||||
.footnote_index_item {
|
||||
white-space: nowrap;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.footnote_plugin_text {
|
||||
width: unset; /*unset width of text column to fix site issues*/
|
||||
|
@ -167,10 +171,11 @@ span.footnote_tooltip {
|
|||
* Printing a table, browsers tend to avoid page breaks,
|
||||
* but it takes a wrapper to avoid a page break before the table.
|
||||
*
|
||||
* UI elements (button, arrows) and link styling are removed.
|
||||
* UI elements - expand button, arrows - are hidden in print;
|
||||
* link styling is reverted so as to not gray out referrers/numbers.
|
||||
*/
|
||||
|
||||
.footnote_container_overall_wrapper {
|
||||
.footnote_container_wrapper {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
* Created-Date: 15.05.14
|
||||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
* Version: 2.0.4
|
||||
* Last modified: 2020-11-01T0415+0100
|
||||
* Version: 2.0.9
|
||||
* Last modified: 2020-11-06T2321+0100
|
||||
*/
|
||||
|
||||
|
||||
|
@ -41,7 +41,6 @@
|
|||
input[type=text], input[type=password], textarea, select {
|
||||
padding-left: 8px !important;
|
||||
padding-right: 8px !important;
|
||||
width: 80% !important;
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
|
Reference in a new issue