mediawiki-skins-Citizen/resources/skins.citizen.styles.toc/skins.citizen.styles.toc.less
github-actions eaeadbb776 Make a dinner reservation - MediaWiki CI
I clean up code to MediaWiki standards
2020-08-12 12:59:57 -04:00

214 lines
3.4 KiB
Plaintext

@import '../variables.less';
@import '../mixins.less';
.toc {
position: fixed;
z-index: -1; // So that it is below float objects in content
max-width: 450px;
top: @header-height;
left: 0;
padding: @margin-side;
color: @base-70;
&::-webkit-scrollbar {
width: 0; // Hide bar on toc
}
&title {
h2 {
margin: 0;
color: @base-50 !important;
font-size: @ui-menu-text-big;
}
}
&toggle {
&span {
display: none;
}
&checkbox:checked ~ ul {
display: block !important; // Force display
}
}
li {
&.toclevel-2,
&.toclevel-3,
&.toclevel-4,
&.toclevel-5,
&.toclevel-6 {
margin-left: 9px;
border-left: 1px dashed;
}
}
li.active {
color: @accent-50;
> a {
color: inherit !important;
border-color: currentColor;
}
a,
li {
color: @base-30;
}
}
a {
display: inline-block;
margin: @content-margin-top / 4 0;
padding-left: 9px;
color: @base-50;
border-left: 3px solid transparent;
&:hover {
color: @base-30;
}
}
&number {
.mixin-screen-reader-text;
}
ul {
margin: 0 !important;
list-style: none;
}
> ul {
margin: @content-margin-top * 0.75 0 0 0 !important;
position: relative;
z-index: 2;
border-left: 1px dashed;
max-width: ~'calc( (100vw - '@page-width + @margin-side * 4 ~' ) / 2 )';
max-height: ~'calc( 100vh - '@header-height * 2 + @margin-side * 4 ~' )';
overflow: visible auto;
overscroll-behavior: contain;
display: block;
}
}
@media ( max-width: @screen3 ) {
.toc {
z-index: 10;
height: 100%;
margin-top: -@header-height;
padding: 0;
&:before,
&:after {
content: unset; // Disable fade
}
&toggle {
&span {
display: block;
font-size: 0 !important;
}
&label {
position: fixed;
z-index: 7;
right: 0;
bottom: 0;
margin: @margin-side;
padding: 0 @margin-side / 2;
width: 39px;
height: 56px;
display: block;
background-color: @base-90;
border-radius: 100%;
.boxshadow(4);
&:hover {
background-color: @menu-item-link-hover;
.boxshadow(5);
&:before {
opacity: @opacity-icon-active;
}
}
&:focus {
background-color: @menu-item-link-active;
}
&:before {
.resource-loader-icon;
display: block;
opacity: @opacity-icon;
}
}
&checkbox:not( :checked ) ~ ul {
transform: none;
}
}
&title h2 {
display: none;
}
> ul {
display: block !important; // So that animation is visible
margin: 0 !important;
padding: @header-height + @margin-side @margin-side @margin-side * 2 @margin-side / 2 !important; // More scroll spaces
max-width: none;
height: 100%;
max-height: ~'calc( 100vh - '@header-height + @margin-side * 3 ~')';
background: @base-100;
border-radius: 0 @border-radius-large @border-radius-large 0;
.boxshadow(3);
transform: translateX( -300px - @margin-side );
transition: @transition-transform;
}
}
}
@media ( prefers-color-scheme: dark ) {
.toc {
color: @dark-text-60;
a {
color: @dark-text-70;
&:hover {
color: @dark-text-80;
}
}
li.active {
color: @dark-color-link;
a,
li {
color: @dark-text-80;
}
}
}
@media ( max-width: @screen3 ) {
.toc {
&togglelabel {
background-color: @dark-bg-50;
&:before {
filter: invert( 1 );
}
&:hover,
&:focus {
background-color: @accent-10;
}
}
> ul {
background: @dark-bg-40;
}
}
}
}