mediawiki-skins-MinervaNeue/resources/skins.minerva.base.styles/pageactions.less
ksarabia 5ef5694fbf Update Minerva skin to use Codex icons
- Define icon size variables in icons.less
- Update icon classes to use
  .cdx-mixin-css-icon()
- Remove temporary fixes in icons.less
- Add 'codex.styles' dependency in skin.json
- Set 'useMaskImage' to true in skin.json

Bug: T374145
Depends-On: Ia8f770aec365da77b39cb0258f546df7894e6ba4
Change-Id: I87b060cf98194d81679da2610944f58e8d941389
2024-09-27 21:53:55 +00:00

103 lines
2.3 KiB
Plaintext

/* stylelint-disable selector-max-id */
@import '../../minerva.less/minerva.variables.less';
.heading-holder {
padding: @top-spacing-title-section 0 0;
position: relative;
.tagline {
color: @color-subtle;
font-size: @font-size-tag-line;
}
}
.page-heading {
margin-bottom: 12px;
}
// used to disable the languages icon.
.cdx-button.language-selector.disabled {
cursor: default;
// has to be !important to override the cdx-button selector
color: @color-disabled !important;
}
#p-views {
position: relative;
}
.page-actions-menu {
box-sizing: border-box;
border-top: @border-width-base @border-style-base @border-color-muted;
border-bottom: @border-subtle;
margin-top: -@border-width-base; // Offset top border.
}
.page-actions-menu__list {
display: flex;
height: @size-icon * 2;
justify-content: space-between;
.disabled .minerva-icon {
background: @color-disabled;
}
}
.page-actions-menu__list-item {
display: flex;
justify-content: flex-end;
align-items: center;
min-width: 0;
overflow: hidden;
.cdx-button {
color: @color-subtle !important;
font-weight: 500;
}
}
// Layout for less than 5 items - one item at the beginning, rest at the end.
// |1-----2--3--4|
.page-actions-menu__list-item:first-child {
flex-grow: 1;
justify-content: flex-start;
.cdx-mixin-button-layout-flush( 'start', true );
}
// position the last icon with the edge of the content container
.page-actions-menu__list-item:last-child {
.cdx-mixin-button-layout-flush( 'end', true );
}
// Watchstar is hidden for anonymous no-js users
// While we could link the icon to the login/signup form, this is not
// a perfect experience and could be confusing.
// In JavaScript this icon will be converted to a watch icon and will point
// to a Call to action to sign up/login and explain why that's a good idea.
// Thus, anonymous users without JS will never see this icon.
// This is a small % of our users, so deemed okay.
.client-nojs {
.watch-this-article {
visibility: hidden;
}
.is-authenticated {
.watch-this-article {
visibility: visible;
}
}
}
// On feature phone devices that don't support JavaScript, hide the page actions bar.
@media all and ( max-width: @min-width-breakpoint-mobile - 1 ) {
.client-nojs {
#p-views {
display: none;
}
.mw-first-heading {
border: 0;
}
}
}