3802249ec4
- Bugfix: Changed tooltip class to be unique - Bugfix: Changed superscript styling to not manipulate the line height - Bugfix: Changed styling of the footnotes text in the reference container to avoid line breaks - Updated: Reformatted code - Added: new settings tab for custom CSS settings git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@957947 b8457f37-d9ea-0310-8a92-e5e31aec5664
30 lines
No EOL
601 B
CSS
30 lines
No EOL
601 B
CSS
/**
|
|
* 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;
|
|
} |