
In the dokuwiki standard template __background__ is the variable defining the background-color of the content. It is one of the guaranteed placeholder that every template must provide. Hence we should use it with the way it is used in the default template, so other plugins can rely on it and look consistently. Also some other base-dokuwiki styles still use it accordingly, for example the footnotes. SPR-954
26 lines
653 B
Text
Executable file
26 lines
653 B
Text
Executable file
/**
|
|
* This file provides styles for do-task plugin
|
|
*/
|
|
|
|
/* + + + + + global + + + + + */
|
|
|
|
ul.page-attributes {
|
|
.plugin_do_pagetasks {
|
|
position: relative;
|
|
border-radius: @ini_default_border_radius; // @ini_default_border_radius vs. @fix_border-radius
|
|
|
|
strong {
|
|
overflow: hidden;
|
|
background-color: @ini_background_site;
|
|
border-color: @noopentasks-border;
|
|
color: @ini_text_webframe;
|
|
}
|
|
|
|
&.do_none {
|
|
.num {
|
|
background-color: @noopentasks-border; // fix
|
|
color: @noopentasks-color; // fix
|
|
}
|
|
}
|
|
}
|
|
}
|