Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_tabs.css « css « assets « gohugoioTheme « themes « docs - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e0022cc9925494793fcd920d83a018b4e8b619e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.tab-button{
	margin-bottom:1px;
	position: relative;
	z-index: 1;
	color:#333;
	border-color:#ccc;
	outline: none;
	background-color:white;
}
.tab-pane code{
	background:#f1f2f2;
	border-radius:0;
}
.tab-pane .chroma{
	background:none;
	padding:0;
}
.tab-button.active{
	border-bottom-color:#f1f2f2;
	background-color: #f1f2f2;
}
.tab-content .tab-pane{
	display: none;
}
.tab-content .tab-pane.active{
	display: block;
}
/* Treatment of copy buttons inside a tab module */ 
.tab-content .copy, .tab-content .copied{
	display: none;
}
.tab-content .tab-pane.active + .copy, .tab-content .tab-pane.active + .copied{
	display: block;
}