_tabs.css (634B)
1 .tab-button{
2 margin-bottom:1px;
3 position: relative;
4 z-index: 1;
5 color:#333;
6 border-color:#ccc;
7 outline: none;
8 background-color:white;
9 }
10 .tab-pane code{
11 background:#f1f2f2;
12 border-radius:0;
13 }
14 .tab-pane .chroma{
15 background:none;
16 padding:0;
17 }
18 .tab-button.active{
19 border-bottom-color:#f1f2f2;
20 background-color: #f1f2f2;
21 }
22 .tab-content .tab-pane{
23 display: none;
24 }
25 .tab-content .tab-pane.active{
26 display: block;
27 }
28 /* Treatment of copy buttons inside a tab module */
29 .tab-content .copy, .tab-content .copied{
30 display: none;
31 }
32 .tab-content .tab-pane.active + .copy, .tab-content .tab-pane.active + .copied{
33 display: block;
34 }