dokuwiki-template-sprintdoc.../css/area_tabs.less
Jana Deutschländer 5e01750458 improve less formating - part 2 (template area and base modules)
- remove @author from comments
- adjust the spacing
2019-04-10 17:04:57 +02:00

37 lines
782 B
Text

/**
* This file provides styles for tab boxes
*/
/* + + + + + tabs + + + + + */
#dokuwiki__content {
ul.tabs {
li:not([class~="active"]) {
strong,
a {
color: @ini_text_neu;
transition: @transition background-color, @transition color;
}
a:hover,
a:focus,
a:active {
color: @ini_text;
}
}
}
.tabs > ul {
li:not([class~="active"]) {
a {
color: @ini_text_neu;
transition: @transition background-color, @transition color;
}
a:hover,
a:focus,
a:active {
color: @ini_text;
}
}
}
}