mediawiki-skins-Citizen/resources/skins.citizen.styles.toc/skins.citizen.styles.toc.less

214 lines
3.4 KiB
Plaintext
Raw Normal View History

2020-06-16 02:32:55 +00:00
@import '../variables.less';
@import '../mixins.less';
2020-06-10 22:02:22 +00:00
.toc {
position: fixed;
z-index: -1; // So that it is below float objects in content
2020-06-10 22:02:22 +00:00
max-width: 450px;
top: @header-height;
2020-06-11 19:36:26 +00:00
left: 0;
2020-06-10 22:02:22 +00:00
padding: @margin-side;
color: @base-70;
&::-webkit-scrollbar {
width: 0; // Hide bar on toc
}
&title {
h2 {
margin: 0;
2020-06-11 01:57:35 +00:00
color: @base-50 !important;
2020-06-10 22:02:22 +00:00
font-size: @ui-menu-text-big;
}
}
&toggle {
&span {
display: none;
}
&checkbox:checked ~ ul {
display: block !important; // Force display
}
2020-06-10 22:02:22 +00:00
}
li {
&.toclevel-2,
&.toclevel-3,
&.toclevel-4,
&.toclevel-5,
&.toclevel-6 {
2020-06-11 19:52:05 +00:00
margin-left: 9px;
2020-06-11 19:36:26 +00:00
border-left: 1px dashed;
2020-06-10 22:02:22 +00:00
}
}
li.active {
color: @accent-50;
> a {
color: inherit !important;
border-color: currentColor;
}
a,
li {
color: @base-30;
}
}
a {
display: inline-block;
2020-06-11 20:06:02 +00:00
margin: @content-margin-top / 4 0;
2020-06-11 19:52:05 +00:00
padding-left: 9px;
2020-06-10 22:02:22 +00:00
color: @base-50;
2020-06-11 19:36:26 +00:00
border-left: 3px solid transparent;
2020-06-10 22:02:22 +00:00
&:hover {
color: @base-30;
}
}
&number {
.mixin-screen-reader-text;
}
ul {
2020-06-11 19:36:26 +00:00
margin: 0 !important;
2020-06-10 22:02:22 +00:00
list-style: none;
}
> ul {
2020-06-11 19:36:26 +00:00
margin: @content-margin-top * 0.75 0 0 0 !important;
2020-06-10 22:02:22 +00:00
position: relative;
z-index: 2;
2020-06-11 19:36:26 +00:00
border-left: 1px dashed;
max-width: ~'calc( (100vw - '@page-width + @margin-side * 4 ~' ) / 2 )';
max-height: ~'calc( 100vh - '@header-height * 2 + @margin-side * 4 ~' )';
2020-06-10 22:02:22 +00:00
overflow: visible auto;
overscroll-behavior: contain;
display: block;
}
}
@media ( max-width: @screen3 ) {
.toc {
z-index: 10;
2020-07-04 02:02:12 +00:00
height: 100%;
2020-06-10 22:02:22 +00:00
margin-top: -@header-height;
padding: 0;
&:before,
&:after {
content: unset; // Disable fade
}
&toggle {
&span {
display: block;
font-size: 0 !important;
}
2020-06-10 22:02:22 +00:00
&label {
2020-06-10 22:02:22 +00:00
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;
}
2020-06-10 22:02:22 +00:00
}
&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
2020-06-11 20:33:35 +00:00
max-width: none;
height: 100%;
2020-06-11 20:06:02 +00:00
max-height: ~'calc( 100vh - '@header-height + @margin-side * 3 ~')';
background: @base-100;
border-radius: 0 @border-radius-large @border-radius-large 0;
.boxshadow(3);
2020-08-09 21:28:32 +00:00
transform: translateX( -300px - @margin-side );
2020-06-10 22:02:22 +00:00
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 {
2020-06-10 22:02:22 +00:00
background-color: @dark-bg-50;
&:before {
filter: invert( 1 );
}
&:hover,
&:focus {
background-color: @accent-10;
}
}
2020-08-10 03:33:45 +00:00
> ul {
background: @dark-bg-40;
}
2020-06-10 22:02:22 +00:00
}
}
}