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