-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
115 lines (97 loc) · 2.33 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* CSS for DokuWiki Plugin Snippets
* @author Michael Klier <chi@chimeric.de>
* vim:ts=4:sw=4:et:enc=utf-8:
*/
div.dokuwiki div#plugin_snippets__sidepane {
float: left;
width: 40%;
}
div.dokuwiki div#plugin_snippets__idx {
width: 100%;
height: 410px;
overflow: auto;
background: __background__;
border: 1px dashed __border__;
padding: 0.5em;
}
div.dokuwiki div#plugin_snippets__opts {
padding: 0.5em;
}
div.dokuwiki div#plugin_snippets__idx ul {
list-style: none;
padding: 0;
margin: 0;
float: left;
width: 95%;
}
div.dokuwiki div#plugin_snippets__idx ul ul {
width: 260px;
margin-left: 10px;
}
div.dokuwiki div#plugin_snippets__idx ul ul ul {
width: 250px;
margin-left: 10px;
}
div.dokuwiki div#plugin_snippets__idx ul ul ul ul {
width: 240px;
margin-left: 10px;
}
div.dokuwiki div#plugin_snippets__idx ul ul li,
div.dokuwiki div#plugin_snippets__idx ul ul ul li,
div.dokuwiki div#plugin_snippets__idx ul ul ul ul li {
border-right: none;
}
div.dokuwiki div#plugin_snippets__idx li {
width: 100%;
cursor: pointer;
float: left;
}
div.dokuwiki div#plugin_snippets__idx li span {
font-weight: normal;
padding-left: 5px;
}
div.dokuwiki div#plugin_snippets__idx div.li {
padding: 0.2em;
float: left;
font-weight: bold;
}
div.dokuwiki div#plugin_snippets__idx div.open {
background: url(images/close.png) no-repeat 3px 4px;
padding-left: 22px;
width: 98%;
}
div.dokuwiki div#plugin_snippets__idx div.closed {
background: url(images/open.png) no-repeat 3px 4px;
padding-left: 22px;
width: 98%;
}
div.dokuwiki div#plugin_snippets__idx a.plugin_snippets_preview,
div.dokuwiki div#plugin_snippets__idx a.plugin_snippets_insert {
display: block;
width: 18px;
height: 18px;
float: left;
}
div.dokuwiki div#plugin_snippets__idx a.plugin_snippets_insert {
background: url(images/insert.png) no-repeat 2px 2px;
}
div.dokuwiki div#plugin_snippets__idx a.plugin_snippets_preview {
background: url(images/preview.png) no-repeat 2px 2px;
}
div.dokuwiki div#plugin_snippets__preview {
position: relative;
left: 3%;
width: 55%;
overflow: auto;
height: 442px;
padding: 0.5em;
border: 1px dashed __border__;
background: __background__;
}
div.dokuwiki div.plugin_snippets__info {
padding: 1em;
border: 1px dashed __border__;
background: __background_neu__;
margin-bottom: 1em;
}