1.dokuwiki {
2    span.plugin_do_item {
3        background-color: __background_alt__;
4        -moz-border-radius: 4px;
5        -opera-border-radius: 4px;
6        -webkit-border-radius: 4px;
7        border-radius: 4px;
8        padding: 0 2px;
9
10        a img {
11            margin-top: -3px;
12        }
13    }
14
15    span.plugin_do_done span.plugin_do_task {
16        text-decoration: line-through;
17    }
18
19    div.page span span.plugin_do_commit {
20        display: none;
21    }
22
23    div.page span.plugin_do_done span.plugin_do_commit {
24        display: inline;
25    }
26
27    table.plugin_do span.plugin_do_item {
28        background-color: transparent;
29    }
30
31    /* POPUPS */
32    div.plugin_do_popup {
33        position: absolute;
34        background-color: __background__;
35        border: 1px solid __border__;
36        width: 400px;
37        z-index: 45;
38
39        .title {
40            background-color: __background_alt__;
41            text-align: center;
42        }
43
44        .title img {
45            float: right;
46            cursor: pointer;
47        }
48
49        .button_wrap {
50            text-align: center;
51        }
52
53        fieldset {
54            border: 0;
55            padding-bottom: 0.3em;
56            width: auto;
57
58            p {
59                margin-bottom: 0;
60                clear: left;
61            }
62
63            p label {
64                display: block;
65                width: 46%;
66                float: left;
67                line-height: 25px;
68                text-align: right;
69                margin-right: 0.1em;
70            }
71
72            p input {
73                display: block;
74                width: 46%;
75                float: left;
76            }
77
78            /* Show autocompletion even with core’s c44e5a88*/
79            div.JSpopup {
80                position: static;
81            }
82        }
83    }
84}
85/* END POPUPS */
86
87div.plugin__do_pagetasks span {
88    background: transparent url(pix/toolbar.png) no-repeat top right;
89    padding-right: 17px;
90}
91
92.plugin__do_pagetasks span.do_done {
93    background-image: url(pix/tasklist_green.png);
94}
95
96.plugin__do_pagetasks span.do_undone {
97    background-image: url(pix/tasklist_yellow.png);
98}
99
100.plugin__do_pagetasks span.do_late {
101    background-image: url(pix/tasklist_red.png);
102}
103
104.plugin__do_usertasks {
105    background: none;
106    border: none;
107    border-radius: 0;
108    padding: 0;
109    border-bottom: 1px solid transparent;
110
111    svg {
112        width: 12px;
113        vertical-align: text-top;
114
115        path {
116            fill: @ini_link;
117        }
118    }
119
120    &:hover,
121    &:focus,
122    &:active {
123        background: none;
124        border: none;
125
126        &:not(.noopentasks) {
127            border-bottom: 1px solid @ini_link;
128        }
129    }
130    cursor: pointer;
131
132    &.noopentasks {
133        cursor: inherit;
134    }
135}
136
137.plugin__do_usertasks_list {
138    background-color: @ini_background;
139
140    table {
141        margin: 0;
142    }
143}
144