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

82 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-09-30 02:33:06 +00:00
#citizen-body-header-sticky-sentinel {
position: absolute;
right: 0;
left: 0;
height: 1px;
2022-09-30 02:33:06 +00:00
visibility: hidden;
}
.ve-activated,
.action-edit {
// HACK: So sticky header will never trigger in edit action
#citizen-body-header-sticky-sentinel {
display: none;
}
}
2022-09-30 02:33:06 +00:00
.citizen-body-header--sticky {
.mw-body-header {
position: sticky;
z-index: 1;
top: 0;
align-items: center;
2022-09-30 02:33:06 +00:00
padding-bottom: var( --space-md );
border-bottom: 1px solid var( --border-color-base );
background-color: var( --color-surface-0 );
.mw-indicators {
display: none;
}
2022-09-30 02:33:06 +00:00
}
.page-heading {
position: relative;
}
2022-09-30 02:33:06 +00:00
.firstHeading {
font-size: 1.25rem;
}
.citizen-jumptotop {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: var( --border-radius--small );
margin: ~'calc( var( --space-sm ) * -1 )';
&:hover {
background-color: var( --background-color-quiet--hover );
}
&:active {
background-color: var( --background-color-quiet--active );
}
}
}
@media ( max-width: @width-breakpoint-tablet ), ( max-height: 800px ) {
.citizen-body-header--sticky {
#siteSub {
display: none;
}
2022-09-30 02:33:06 +00:00
.page-actions {
display: none;
}
2022-09-30 02:33:06 +00:00
}
}
@media ( min-width: @width-breakpoint-desktop-wide ) {
.citizen-body-header--sticky {
.toc {
transform: translateY( 3rem );
@media ( max-height: 800px ) {
transform: translateY( 2rem ) !important; // Somehow need this idk why
}
}
2022-09-30 02:33:06 +00:00
}
}