1/**
2 * @file       hide/style.css
3 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
4 * @author     Luis Machuca B. <luis.machuca [at] gulix.cl>
5 * @brief      CSS styles for the "hide" plugin
6 * @version    1.0
7 *
8 */
9
10/**
11 * the following rules hide/show the text
12 */
13span.selectview {
14  color: __background__ !important;
15  outline: 1px dotted gray !important;
16  }
17span.selectview::selection {
18  }
19
20
21
22/**
23 * This rule will try to hide the effects of nested syntax modes
24 * that assign color, such as BBCode.
25 * It requires CSS3 selector compatibility, so no IE
26 * (as if I'd care...).
27 */
28
29span.selectview span[style*="color"] {
30  color: __background__ !important;
31  }
32
33
34/**
35 * These rules hide links as well
36 */
37
38/* hide all-purpose links (including their icon) */
39span.selectview a {
40  color: __background__ !important;
41  background-image: none !important;
42    }
43
44/* hide the "existing" links */
45div.dokuwiki span.selectview a.wikilink1 {
46  color: __background__ !important;
47  }
48
49/* hide the "missing" links */
50div.dokuwiki span.selectview a.wikilink2 {
51  color: __background__ !important;
52  }
53
54/**
55 * This rule will also try to hide table headers.
56 * It is not guaranteed to work because it depends on
57 * the background color as defined by the
58 * current template's style.ini.
59 */
60div.dokuwiki table tr th span.selectview {
61  color: __background_neu__ !important;
62  outline: 1px dotted gray !important;
63  }
64