for bugfix release 2.0.1
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2408002 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
f650261a9e
commit
1ef7078ea8
4 changed files with 192 additions and 223 deletions
|
@ -6,38 +6,58 @@
|
|||
* Version: 1.0.7
|
||||
* Since: 1.0
|
||||
*/
|
||||
|
||||
/*
|
||||
* On the basis of version 1.6.5
|
||||
* v1.6.6 unchanged.
|
||||
* bug fixes prior to v1.7.0-beta of 2020-10-26T0547+0100
|
||||
* Support Forum bug fixes from 2020-10-26T0622+0100 on.
|
||||
* Last modified: 2020-10-26T0651+0100
|
||||
* Revised on the basis of version 1.6.5 (v1.6.6 unchanged).
|
||||
* Last modified: 2020-10-27T1249+0100
|
||||
*/
|
||||
|
||||
|
||||
/* Footnotes */
|
||||
|
||||
.footnote_tag_styling, .footnote_tag_styling:hover {
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.footnote_tag_styling_1 {
|
||||
color: #2bb975;
|
||||
}
|
||||
|
||||
.footnote_tag_styling_2 {
|
||||
color: #545f5a;
|
||||
}
|
||||
|
||||
/* superscript */
|
||||
/* superscript footnote anchors */
|
||||
|
||||
.footnote_plugin_tooltip_text {
|
||||
vertical-align: top !important;
|
||||
position: relative !important;
|
||||
top: 0.4em !important;
|
||||
top: 0.6em !important;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* tooltip infobox content */
|
||||
|
||||
span.footnote_tooltip {
|
||||
font-size: inherit;
|
||||
text-align: left;
|
||||
z-index: 99;
|
||||
}
|
||||
.continue {
|
||||
font-style: italic;
|
||||
color: green;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.continue:hover {
|
||||
color: blue;
|
||||
}
|
||||
@media print {
|
||||
.footnote_tooltip {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* reference container label */
|
||||
|
||||
.footnote_container_prepare {
|
||||
display: block !important;
|
||||
padding-top: 24px !important;
|
||||
|
@ -63,53 +83,42 @@
|
|||
.footnote_container_prepare > p > span:first-child {
|
||||
padding-left: 20px !important;
|
||||
text-align: left !important;
|
||||
cursor: pointer;
|
||||
font-size: 1.5em !important;
|
||||
}
|
||||
.footnote_container_prepare > p > span:last-child a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.footnote_container_prepare > p > span:last-child a:hover {
|
||||
text-decoration: underline;
|
||||
color: #008800;
|
||||
}
|
||||
|
||||
/* reference container */
|
||||
|
||||
.footnote-reference-container {
|
||||
width: 100%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* index */
|
||||
.footnote_plugin_index {
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
padding-right: 5px;
|
||||
.footnote_plugin_index,
|
||||
.footnote_plugin_text {
|
||||
border:none !important;
|
||||
text-align: left;
|
||||
border:none !important;
|
||||
max-width:10% !important;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* text */
|
||||
.footnote_plugin_text {
|
||||
vertical-align: top;
|
||||
width: 99%;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.footnote_tooltip {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.footnote_tooltip {
|
||||
text-align: left;
|
||||
z-index: 99;
|
||||
}
|
||||
.footnote_plugin_index {
|
||||
width: 9px;
|
||||
cursor: pointer;
|
||||
color: #000099;
|
||||
border: none;
|
||||
}
|
||||
.footnote_plugin_text {
|
||||
border: none;
|
||||
}
|
||||
/*fix for https://wordpress.org/support/topic/box-around-c-references-container/#post-13579381 */
|
||||
|
||||
.footnote_plugin_text a {
|
||||
color: #000099;
|
||||
}
|
||||
|
||||
/* index */
|
||||
.footnote_plugin_index {
|
||||
padding-right: 5px;
|
||||
min-width: 50px;
|
||||
cursor: pointer;
|
||||
color: #000099;
|
||||
}
|
||||
|
|
Reference in a new issue