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

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/themes/gohugoioTheme/assets/css/_tabs.css')
-rw-r--r--docs/themes/gohugoioTheme/assets/css/_tabs.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/themes/gohugoioTheme/assets/css/_tabs.css b/docs/themes/gohugoioTheme/assets/css/_tabs.css
new file mode 100644
index 000000000..6e0022cc9
--- /dev/null
+++ b/docs/themes/gohugoioTheme/assets/css/_tabs.css
@@ -0,0 +1,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;
+} \ No newline at end of file