for bugfix release 2.0.2

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2408438 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
pewgeuges 2020-10-28 15:58:58 +00:00
parent 4f19dfa202
commit 82cc73440e
4 changed files with 52 additions and 26 deletions

View file

@ -8,13 +8,13 @@
*/
/*
* Revised on the basis of version 1.6.5 (v1.6.6 unchanged).
* Last modified: 2020-10-28T0301+0100
* Last modified: 2020-10-28T1452+0100
*/
/* Footnotes */
/* footnotes */
.footnote_tag_styling, .footnote_tag_styling:hover {
.footnote_tag_styling,
.footnote_tag_styling:hover {
text-decoration: none;
font-weight: normal;
}
@ -34,6 +34,12 @@
cursor: pointer;
z-index: 1;
}
.footnote_plugin_tooltip_text a {
text-decoration: none;
}
.footnote_plugin_tooltip_text a:hover {
text-decoration: underline;
}
/* tooltip infobox content */
@ -45,15 +51,10 @@ span.footnote_tooltip {
.continue {
font-style: italic;
color: green;
text-decoration: underline;
}
.continue:hover {
color: blue;
}
@media print {
.footnote_tooltip {
display: none;
}
text-decoration: underline;
}
/* reference container label */
@ -107,18 +108,40 @@ span.footnote_tooltip {
vertical-align: top;
}
/* text */
.footnote_plugin_text {
width: 90%;
}
.footnote_plugin_text a {
color: inherit;
}
/* index */
.footnote_plugin_index {
padding-right: 5px;
min-width: 50px;
cursor: pointer;
color: inherit;
}
.footnote_plugin_index a {
text-decoration: none;
}
.footnote_plugin_index a:hover {
text-decoration: underline;
}
/* text */
.footnote_plugin_text {
width: 90%;
}
.footnote_plugin_text a {
text-decoration: none;
}
.footnote_plugin_text a:hover {
text-decoration: underline;
}
/* printing style */
@media print {
.footnote_tooltip {
display: none;
}
.footnote_plugin_tooltip_text a {
color: inherit;
}
.footnote_plugin_index a {
color: inherit;
}
}