//// /// Copyright (c) 2016-2020 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Tabbed code block content .tabbed-content { display: none; order: 99; width: 100%; background-color: var(--md-code-bg-color); // Actual content pre { margin: 0; border-radius: 0 } } // Tabbed code block container .tabbed-set { display: flex; position: relative; flex-wrap: wrap; margin: 1em 0; border: px2rem(1px) solid var(--md-default-fg-color--lightest); border-radius: px2rem(2px); // Hide radio buttons > input { display: none; // Active tab label &:checked + label { border-color: var(--md-accent-fg-color); color: var(--md-accent-fg-color); // Show code tab content & + .tabbed-content { display: block; padding: 0 px2rem(12px); // Adjust spacing on last element > :last-child { margin-bottom: px2rem(12px); } // Emulate original pymdownx.superfences behavior and stretch to full // width and height when a code block is the only child of a tab > { pre, .highlight, .highlighttable, .codehilite, .codehilitetable { &:only-child { margin: 0 px2rem(-12px); // Remove double background pre { background: transparent; } } } } } } } // Tab label > label { width: auto; padding: px2rem(12px); padding-bottom: px2rem(10px); transition: color 125ms, border 250ms; border-bottom: px2rem(2px) solid transparent; color: var(--md-default-fg-color--light); font-size: ms(-1); font-weight: 700; cursor: pointer; // Hovered tab label html &:hover { color: var(--md-accent-fg-color); } } } // Full-width container on top-level > .tabbed-set { // [mobile -]: Stretch to whole width @include break-to-device(mobile) { margin: 1em px2rem(-16px); border: 0; border-top: px2rem(1px) solid var(--md-default-fg-color--lightest); border-radius: 0; // Actual container with code, overflowing code { padding: px2rem(10.5px) px2rem(16px); } // First tab label input:first-child + label { margin-left: px2rem(4px); } } } }