dokuwiki-template-sprintdoc.../css/plugins/do_tasks.less
Michael Große 8221fa277b
Adjust less vars for compatibility
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
2017-04-24 19:52:20 +02:00

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
}
}
}
}