-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathall.css
43 lines (39 loc) · 1.17 KB
/
all.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
/**
* DokuWiki Plugin Code Prettifier
*/
div.plugin_codeprettify {
margin-bottom: 0;
margin-left: 2em;
padding: 0;
font-size: 90%;
}
div.plugin_codeprettify p {
margin: 0;
}
div.plugin_codeprettify + pre {
margin-top: 0 !important;
}
/*
* fold down longer line
*/
pre.prettyprint {
white-space: pre-wrap;
word-wrap: break-word;
}
/*
* put line numbers on every line instead of just every fifth line
*/
pre.prettyprint ol.linenums {
padding-left: 1em;
list-style-position: outside;
}
pre.prettyprint ol.linenums > li.L0 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L1 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L2 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L3 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L4 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L5 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L6 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L7 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L8 { list-style-type: decimal; }
pre.prettyprint ol.linenums > li.L9 { list-style-type: decimal; }