1/**
2 * PyCode plugin: it embeds a Python script hosted in a remote repository.
3 *
4 * style.css: it defines the screen styles used by PyCode plugin.
5 *
6 * @author Torpedo <dgtorpedo@gmail.com>
7 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
8 * @package style
9 */
10
11/*____________ docstrings ____________*/
12.dokuwiki blockquote.quote_pycode {
13    margin-bottom: 0;
14}
15
16/*____________ line numbers ____________*/
17.dokuwiki div.nums_pycode {
18    padding-top: 2px;
19    float: left;
20    width: auto;
21}
22
23.dokuwiki dl.code.nums_pycode dt {
24    visibility: hidden;
25    margin-left: 0 !important;
26}
27
28.dokuwiki dl.code.nums_pycode dd {
29    margin-right: 1px;
30}
31
32.dokuwiki pre.code.nums_pycode {
33    border-right: none !important;
34    border-top-right-radius: 0;
35    border-bottom-right-radius: 0;
36    box-shadow: none;
37    padding-right: 0;
38    padding-left: 0;
39}
40
41/*____________ code ____________*/
42.dokuwiki div.code_pycode {
43    padding-top: 2px;
44    overflow: auto;
45}
46
47.dokuwiki img.code_pycode {
48    margin-right: 2px;
49    height: 16px;
50    width: 16px;
51}
52
53.dokuwiki dl.code.code_pycode dt {
54    border-bottom-left-radius: 0;
55    border-bottom-right-radius: 0;
56    font-weight: normal;
57}
58
59.dokuwiki pre.code.code_pycode {
60    border-top-left-radius: 0;
61    border-bottom-left-radius: 0;
62}
63
64/*____________ button for submit data ____________*/
65.dokuwiki input.button.ok_pycode {
66    margin-left: .6em;
67}
68
69/*____________ pycode wizard ____________*/
70#pycode__wiz {
71    width: 450px;
72}
73
74#pycode__wiz fieldset {
75    width: 400px;
76    margin: 0;
77    text-align: left;
78}
79
80#pycode__wiz div#pycode__left {
81    width: 50%;
82    float: left;
83}
84
85#pycode__wiz div#pycode__right {
86    margin-left: 50%;
87}
88
89#pycode__wiz input#pycode__lns-from,
90#pycode__wiz input#pycode__lns-to {
91    width: 20%;
92}
93
94#pycode__wiz input#pycode__def,
95#pycode__wiz input#pycode__cls,
96#pycode__wiz input#pycode__title {
97    width: 100%;
98}
99
100#pycode__wiz label {
101    padding-right: 1em;
102}
103
104#pycode__wiz input#pycode__src-url {
105    width: 100%;
106}
107
108#pycode__wiz button {
109    margin-bottom: 0.5em;
110}
111
112#pycode__wiz input#pycode__insert {
113    margin-top: 0.5em;
114}
115