1/**
2 * This file provides styles for tab boxes
3 */
4
5/* + + + + +  tabs  + + + + + */
6#dokuwiki__content {
7    ul.tabs {
8        li:not([class~="active"]) {
9            strong,
10            a {
11                color: @ini_text_neu;
12                transition: @transition background-color, @transition color;
13            }
14
15            a:hover,
16            a:focus,
17            a:active {
18                color: @ini_text;
19            }
20        }
21    }
22
23    .tabs > ul {
24        li:not([class~="active"]) {
25            a {
26                color: @ini_text_neu;
27                transition: @transition background-color, @transition color;
28            }
29
30            a:hover,
31            a:focus,
32            a:active {
33                color: @ini_text;
34            }
35        }
36    }
37}
38