2018-06-10 17:23:06 +02:00
|
|
|
////
|
2020-02-10 12:34:58 +01:00
|
|
|
/// Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
|
2018-06-10 17:23:06 +02:00
|
|
|
///
|
|
|
|
/// 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 {
|
|
|
|
|
2020-03-10 16:42:23 +01:00
|
|
|
// Tabbed block content
|
2020-02-14 00:16:04 -07:00
|
|
|
.tabbed-content {
|
2018-06-10 17:23:06 +02:00
|
|
|
display: none;
|
|
|
|
order: 99;
|
|
|
|
width: 100%;
|
2020-03-10 16:56:17 +01:00
|
|
|
box-shadow: 0 px2rem(-1px) var(--md-default-fg-color--lightest);
|
2018-06-10 17:23:06 +02:00
|
|
|
|
2020-03-16 10:05:04 +01:00
|
|
|
// Mirror old superfences behavior, if there's only a single code block.
|
2020-07-17 16:07:32 +02:00
|
|
|
> pre:only-child,
|
2020-03-16 10:05:04 +01:00
|
|
|
> .codehilite:only-child pre,
|
|
|
|
> .codehilitetable:only-child,
|
|
|
|
> .highlight:only-child pre,
|
|
|
|
> .highlighttable:only-child {
|
2018-06-10 17:23:06 +02:00
|
|
|
margin: 0;
|
2020-03-10 16:42:23 +01:00
|
|
|
|
2020-03-16 10:05:04 +01:00
|
|
|
// Remove rounded borders at the top
|
|
|
|
> code {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2018-06-10 17:23:06 +02:00
|
|
|
}
|
2020-03-11 15:01:07 +01:00
|
|
|
|
|
|
|
// Nested tabs
|
|
|
|
> .tabbed-set {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-06-10 17:23:06 +02:00
|
|
|
}
|
|
|
|
|
2020-03-10 16:42:23 +01:00
|
|
|
// Tabbed block container
|
2020-02-14 00:16:04 -07:00
|
|
|
.tabbed-set {
|
2018-06-10 17:23:06 +02:00
|
|
|
position: relative;
|
2020-03-06 15:21:08 +01:00
|
|
|
display: flex;
|
2018-06-10 17:23:06 +02:00
|
|
|
flex-wrap: wrap;
|
2018-06-13 09:51:04 +02:00
|
|
|
margin: 1em 0;
|
2020-02-25 22:17:23 +01:00
|
|
|
border-radius: px2rem(2px);
|
2018-06-10 17:23:06 +02:00
|
|
|
|
|
|
|
// Hide radio buttons
|
2018-06-13 09:51:04 +02:00
|
|
|
> input {
|
2018-06-10 17:23:06 +02:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
// Active tab label
|
|
|
|
&:checked + label {
|
2020-02-25 22:17:23 +01:00
|
|
|
color: var(--md-accent-fg-color);
|
2020-03-06 15:21:08 +01:00
|
|
|
border-color: var(--md-accent-fg-color);
|
2018-06-10 17:23:06 +02:00
|
|
|
|
2020-03-10 16:42:23 +01:00
|
|
|
// Show tabbed block content
|
2020-02-14 00:16:04 -07:00
|
|
|
& + .tabbed-content {
|
2018-06-10 17:23:06 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tab label
|
2018-06-13 09:51:04 +02:00
|
|
|
> label {
|
2020-03-10 16:56:17 +01:00
|
|
|
z-index: 1;
|
2018-06-10 17:23:06 +02:00
|
|
|
width: auto;
|
2020-03-10 16:42:23 +01:00
|
|
|
padding: px2rem(12px) 1.25em px2rem(10px);
|
2020-02-25 22:17:23 +01:00
|
|
|
color: var(--md-default-fg-color--light);
|
|
|
|
font-weight: 700;
|
2020-03-06 15:21:08 +01:00
|
|
|
font-size: ms(-1);
|
|
|
|
border-bottom: px2rem(2px) solid transparent;
|
2018-06-10 17:23:06 +02:00
|
|
|
cursor: pointer;
|
2020-05-17 14:40:00 +02:00
|
|
|
transition: color 250ms;
|
2018-06-10 17:23:06 +02:00
|
|
|
|
|
|
|
// Hovered tab label
|
|
|
|
html &:hover {
|
2020-02-25 20:25:05 +01:00
|
|
|
color: var(--md-accent-fg-color);
|
2018-06-10 17:23:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|