
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
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
/**
|
|
* This file provides styles for qc edittable plugin
|
|
*/
|
|
|
|
|
|
/* + + + + + global + + + + + */
|
|
|
|
#dokuwiki__content.main-content {
|
|
div.editbutton_table {
|
|
position: relative; // for IE
|
|
z-index: 1; // for IE
|
|
float: left;
|
|
margin-top: -1.46rem !important; // overwrite inline stales
|
|
|
|
form div.no {
|
|
button,
|
|
input.button {
|
|
min-height: 1rem;
|
|
background-color: @ini_background;
|
|
border-top: solid 1px @ini_button_background;
|
|
border-color: @ini_border;
|
|
border-radius: 0 0 @fix_border-radius @fix_border-radius;
|
|
color: @ini_existing;
|
|
font-size: @font-size-small;
|
|
margin-top: 0;
|
|
padding-right: .3em;
|
|
transition: @transition background-color, @transition border-color, @transition color;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
background-color: @ini_existing;
|
|
border-color: @ini_existing;
|
|
color: @ini_background;
|
|
}
|
|
}
|
|
}
|
|
|
|
+ * {
|
|
clear: left;
|
|
}
|
|
|
|
+ div.editbutton_table {
|
|
clear: none;
|
|
}
|
|
}
|
|
}
|