/** * @file hide/style.css * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * @author Luis Machuca B. * @brief CSS styles for the "hide" plugin * @version 1.0 * */ /** * the following rules hide/show the text */ span.selectview { color: __background__ !important; outline: 1px dotted gray !important; } span.selectview::selection { } /** * This rule will try to hide the effects of nested syntax modes * that assign color, such as BBCode. * It requires CSS3 selector compatibility, so no IE * (as if I'd care...). */ span.selectview span[style*="color"] { color: __background__ !important; } /** * These rules hide links as well */ /* hide all-purpose links (including their icon) */ span.selectview a { color: __background__ !important; background-image: none !important; } /* hide the "existing" links */ div.dokuwiki span.selectview a.wikilink1 { color: __background__ !important; } /* hide the "missing" links */ div.dokuwiki span.selectview a.wikilink2 { color: __background__ !important; } /** * This rule will also try to hide table headers. * It is not guaranteed to work because it depends on * the background color as defined by the * current template's style.ini. */ div.dokuwiki table tr th span.selectview { color: __background_neu__ !important; outline: 1px dotted gray !important; }