Prepare for release version 1.5.2
- Add: Setting to enable/disable the mouse-over box - Add: Current WordPress Theme to the Diagnostics sub page - Add: ManFisher note in the "other Plugins" sub page - Update: Removed unnecessary hidden inputs from the Settings page - Update: Merged public CSS files to reduce the output and improve the performance - Update: Translations (EN and DE) - Bugfix: Removed the 'trim' function to allow whitespaces at the beginning and end of each setting - Bugfix: Convert the footnotes short code to HTML special chars when adding them into the page/post editor (visual and text) - Bugfix: Detailed error messages if other Plugins can't be loaded. Also added empty strings as default values to avoid 'undefined' git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@1000036 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
a0d945d44c
commit
58b3dd27f6
26 changed files with 345 additions and 241 deletions
|
@ -1,25 +0,0 @@
|
|||
/**
|
||||
* Created by Stefan Herndler.
|
||||
* User: Stefan
|
||||
* Date: 15.05.14
|
||||
* Time: 16:21
|
||||
* Version: 1.0.7
|
||||
* Since: 1.0
|
||||
*/
|
||||
|
||||
/*
|
||||
* styling for the 'footnotes' tag
|
||||
* @since 1.0.7
|
||||
*/
|
||||
.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;
|
||||
}
|
44
css/reference_container.css → css/public.css
Normal file → Executable file
44
css/reference_container.css → css/public.css
Normal file → Executable file
|
@ -1,11 +1,49 @@
|
|||
/**
|
||||
* Created by Stefan Herndler.
|
||||
* User: Stefan
|
||||
* Date: 30.07.14 11:25
|
||||
* Version: 1.0
|
||||
* Since: 1.3
|
||||
* Date: 15.05.14
|
||||
* Time: 16:21
|
||||
* Version: 1.0.7
|
||||
* Since: 1.0
|
||||
*/
|
||||
|
||||
/* styling for the 'footnotes' tag */
|
||||
.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;
|
||||
}
|
||||
|
||||
/* tooltip */
|
||||
.footnote_plugin_tooltip_text {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.footnote_plugin_tooltip_text > sup {
|
||||
vertical-align: top !important;
|
||||
position: relative !important;
|
||||
top: -0.1em !important;
|
||||
}
|
||||
|
||||
/* tooltip styling */
|
||||
.footnote_tooltip {
|
||||
display: none;
|
||||
background-color: #fff7a7;
|
||||
border: 1px solid #cccc99;
|
||||
border-radius: 3px;
|
||||
padding: 12px;
|
||||
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 */
|
||||
.footnote_container_prepare {
|
||||
display: block !important;
|
|
@ -1,30 +0,0 @@
|
|||
/**
|
||||
* Created by Stefan Herndler.
|
||||
* User: Stefan
|
||||
* Date: 30.07.14 11:26
|
||||
* Version: 1.0
|
||||
* Since: 1.3
|
||||
*/
|
||||
|
||||
/* tooltip */
|
||||
.footnote_plugin_tooltip_text {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.footnote_plugin_tooltip_text > sup {
|
||||
vertical-align: top !important;
|
||||
position: relative !important;
|
||||
top: -0.1em !important;
|
||||
}
|
||||
|
||||
/* tooltip styling */
|
||||
.footnote_tooltip {
|
||||
display: none;
|
||||
background-color: #fff7a7;
|
||||
border: 1px solid #cccc99;
|
||||
border-radius: 3px;
|
||||
padding: 12px;
|
||||
font-size: 13px;
|
||||
-moz-box-shadow: 2px 2px 11px #666;
|
||||
-webkit-box-shadow: 2px 2px 11px #666;
|
||||
}
|
Reference in a new issue