mediawiki-skins-Vector/resources/skins.vector.styles.legacy/components/LegacySidebar.less
Jon Robson 595f520e44 Legacy: Group template/styles together to avoid confusion
This was confusing me while working on the Portal.mustache file.

Bug: T317899
Change-Id: I884cd33938b2670bddc90f698d8f61f37c6c29d4
2022-12-01 22:31:12 +00:00

53 lines
1.3 KiB
Plaintext

@import '../../common/variables.less';
@import 'mediawiki.mixins.less';
// FIXME: Remove `.vector-menu-portal` selector when cached HTML not a problem.
.vector-legacy-sidebar .vector-menu-portal,
.vector-menu-portal {
margin: 0 @margin-end-portal 0 @margin-start-portal;
padding: 0.25em 0;
direction: ltr;
.vector-menu-heading {
display: block;
color: @color-base--subtle;
margin: 0.5em 0 0 ( @margin-start-nav-main-body / @font-size-nav-main-heading );
border: 0;
padding: 0.25em 0;
font-size: @font-size-nav-main-heading;
font-weight: normal;
cursor: default;
background-image: linear-gradient( to right, @border-color-portal-heading-transparent 0, @border-color-portal-heading 33%, @border-color-portal-heading 66%, @border-color-portal-heading-transparent 100% ); // Standard (Firefox 16+, IE 10+, Safari 6.1+, Chrome 26+)
background-position: center bottom;
background-repeat: no-repeat;
background-size: 100% @border-width-base;
}
.vector-menu-content {
margin-left: @margin-start-portal-body;
padding-top: 0;
ul {
list-style: none;
margin: 0;
padding-top: 0.3em;
}
li {
margin: 0;
padding: 0.25em 0;
font-size: @font-size-portal-list-item;
line-height: @line-height-nav;
word-wrap: break-word;
a {
color: @color-link;
&:visited {
color: @color-link--visited;
}
}
}
}
}