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