Prepare for release version 1.5.6
- **IMPORTANT**: We have changed the html tag for the superscript. Please check and update your custom CSS. - Add: .pot file to enable Translations for everybody - Add: Settings to customize the mouse-over box (color, background color, border, max. width) - Update: Translation file names - Update: Translation EN and DE - Update: Styling of the superscript (need to check custom CSS code for the superscript) - Update: Description of CSS classes for the 'customize CSS' text area - Bugfix: Removed 'a' tag around the superscript for Footnotes inside the content to avoid page reloads (empty href attribute) - Bugfix: Avoid Settings fallback to its default value after submit an empty value for a setting - Bugfix: Enable multiple WP_Post objects for the_post hook git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@1005623 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
a466a886bd
commit
b183563518
19 changed files with 622 additions and 188 deletions
|
@ -7,7 +7,7 @@
|
|||
* Since: 1.0
|
||||
*/
|
||||
|
||||
/* styling for the 'footnotes' tag */
|
||||
/* Footnotes */
|
||||
.footnote_tag_styling, .footnote_tag_styling:hover {
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
|
@ -21,19 +21,16 @@
|
|||
color: #545f5a;
|
||||
}
|
||||
|
||||
/* tooltip */
|
||||
/* superscript */
|
||||
.footnote_plugin_tooltip_text {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.footnote_plugin_tooltip_text > sup {
|
||||
vertical-align: top !important;
|
||||
position: relative !important;
|
||||
top: -0.1em !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* tooltip styling */
|
||||
.footnote_tooltip {
|
||||
/* tooltip */
|
||||
/*.footnote_tooltip {
|
||||
display: none;
|
||||
background-color: #fff7a7;
|
||||
border: 1px solid #cccc99;
|
||||
|
@ -42,9 +39,9 @@
|
|||
font-size: 13px;
|
||||
-moz-box-shadow: 2px 2px 11px #666;
|
||||
-webkit-box-shadow: 2px 2px 11px #666;
|
||||
}
|
||||
}*/
|
||||
|
||||
/* container before the footnote appears at the bottom to get a space between footnote and content */
|
||||
/* reference container label */
|
||||
.footnote_container_prepare {
|
||||
display: block !important;
|
||||
padding-top: 24px !important;
|
||||
|
@ -74,35 +71,34 @@
|
|||
font-size: 1.5em !important;
|
||||
}
|
||||
|
||||
.footnote_container_prepare > p > span:last-child {
|
||||
}
|
||||
|
||||
.footnote_hide_box {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* reference container */
|
||||
.footnote-reference-container {
|
||||
width: 100%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.footnote-reference-container > tbody > tr > td {
|
||||
/* index */
|
||||
.footnote_plugin_index {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.footnote-reference-container > tbody > tr > td:first-child {
|
||||
white-space: nowrap;
|
||||
padding-right: 5px;
|
||||
text-align: left;
|
||||
border:none !important;
|
||||
max-width:10% !important;
|
||||
}
|
||||
|
||||
.footnote-reference-container > tbody > tr > td:nth-child(2) {
|
||||
/* arrow */
|
||||
.footnote_plugin_link {
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
padding-right: 5px;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.footnote-reference-container > tbody > tr > td:last-child {
|
||||
/* text */
|
||||
.footnote_plugin_text {
|
||||
vertical-align: top;
|
||||
width: 99%;
|
||||
text-align: left;
|
||||
}
|
Reference in a new issue