mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-24 06:13:54 +00:00
Utilize the mw-ui-icon-flush-left/right classes to align icons
Affected icons: - hamburger menu - "search|notifications|user" menu in page header - notification "circle" icon - page actions menu - section edit icon Bug: T229440 Change-Id: I5587855d0d9ecf2fac20ce16845e6749c26ab7c2
This commit is contained in:
parent
2ef6119bed
commit
633c48bddf
|
@ -113,7 +113,9 @@ final class MainMenuDirector {
|
|||
return Html::element( 'a', [
|
||||
'title' => $title,
|
||||
'href' => $url,
|
||||
'class' => MinervaUI::iconClass( 'mainmenu', 'element', 'main-menu-button' ),
|
||||
'class' => MinervaUI::iconClass(
|
||||
'mainmenu', 'element', 'main-menu-button mw-ui-icon-flush-left'
|
||||
),
|
||||
'data-event-name' => 'ui.mainmenu',
|
||||
'id' => 'mw-mf-main-menu-button',
|
||||
], $tooltip );
|
||||
|
|
|
@ -80,7 +80,7 @@ final class PageActionsDirector {
|
|||
'item-id' => 'page-actions-overflow',
|
||||
'checkboxID' => 'page-actions-overflow-checkbox',
|
||||
'toggleID' => 'page-actions-overflow-toggle',
|
||||
'toggleClass' => MinervaUI::iconClass( 'page-actions-overflow' ),
|
||||
'toggleClass' => MinervaUI::iconClass( 'page-actions-overflow', 'element' ),
|
||||
'listClass' => 'page-actions-overflow-list toggle-list__list--drop-down',
|
||||
'text' => $this->messageLocalizer->msg( 'minerva-page-actions-overflow' ),
|
||||
'analyticsEventName' => 'ui.overflowmenu',
|
||||
|
|
|
@ -115,7 +115,7 @@ class ToolbarBuilder {
|
|||
$this->title,
|
||||
$this->languagesHelper->doesTitleHasLanguagesOrVariants( $this->title ),
|
||||
$this->messageLocalizer,
|
||||
MinervaUI::iconClass( 'language-switcher', 'element', '' ) )
|
||||
MinervaUI::iconClass( 'language-switcher', 'element' ) )
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -240,7 +240,9 @@ class SkinMinerva extends SkinTemplate {
|
|||
'data-section' => $section,
|
||||
// Note visibility of the edit section link button is controlled by .edit-page in ui.less so
|
||||
// we default to enabled even though this may not be true.
|
||||
'class' => MinervaUI::iconClass( 'edit-enabled', 'element', 'edit-page' ),
|
||||
'class' => MinervaUI::iconClass(
|
||||
'edit-enabled', 'element', 'edit-page mw-ui-icon-flush-right'
|
||||
),
|
||||
], $message );
|
||||
$html .= Html::closeElement( 'span' );
|
||||
return $html;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<nav class="minerva-user-navigation" aria-labelledby="minerva-user-menu-toggle"> {{! See ToggleList's toggleID. }}
|
||||
<div>{{{searchButton}}}</div>
|
||||
{{^isAnon}}
|
||||
<div class="minerva-user-notifications">
|
||||
<div class="mw-ui-icon-element minerva-user-notifications">
|
||||
{{#userNotificationsData}}{{>userNotifications}}{{/userNotificationsData}}
|
||||
</div>
|
||||
{{/isAnon}}
|
||||
|
|
|
@ -23,6 +23,7 @@ footer {
|
|||
display: block;
|
||||
color: @lastModifiedBarTextColor;
|
||||
transition: background-color 0.2s ease, color 0.2s ease;
|
||||
padding: 0 @contentPadding;
|
||||
}
|
||||
|
||||
.last-modifier-tagline {
|
||||
|
|
|
@ -55,6 +55,12 @@
|
|||
.page-actions-menu__list-item:first-child {
|
||||
flex-grow: 1;
|
||||
justify-content: flex-start;
|
||||
margin-left: @contentPadding/-2;
|
||||
}
|
||||
|
||||
// position the last icon with the edge of the content container
|
||||
.page-actions-menu__list-item:last-child {
|
||||
margin-right: @contentPadding/-2;
|
||||
}
|
||||
|
||||
.page-actions-overflow-list {
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
border-top: 0;
|
||||
display: block;
|
||||
height: auto;
|
||||
padding: 0 @contentPadding;
|
||||
|
||||
.branding-box {
|
||||
padding-left: 0 !important;
|
||||
|
|
|
@ -44,6 +44,7 @@ main {
|
|||
|
||||
.header-container {
|
||||
border-bottom: 1px solid @colorGray12;
|
||||
padding: 0 @contentPadding;
|
||||
|
||||
&.header-chrome {
|
||||
background-color: @chromeColor;
|
||||
|
@ -80,7 +81,6 @@ main {
|
|||
margin-top: @headerMarginTop;
|
||||
|
||||
> div {
|
||||
width: @siteHeaderHeight;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
display: table-cell;
|
||||
|
@ -204,14 +204,6 @@ input.search {
|
|||
.section-heading {
|
||||
border-bottom: 1px solid @colorGray14;
|
||||
margin-bottom: @headingMargin;
|
||||
|
||||
.indicator {
|
||||
margin-left: -@iconGutterWidth;
|
||||
// FIXME: Can be removed when https://gerrit.wikimedia.org/r/535835 is merged
|
||||
font-size: initial;
|
||||
// FIXME: Can be removed when https://gerrit.wikimedia.org/r/535835 is merged
|
||||
vertical-align: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.mw-parser-output > h1,
|
||||
|
|
|
@ -14,9 +14,11 @@
|
|||
justify-content: flex-end;
|
||||
// Show the list relative the button.
|
||||
position: relative;
|
||||
|
||||
.toggle-list {
|
||||
width: @menuButtonIconSize;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
// Targets the last direct descendant of the navigation menu
|
||||
// (i.e. the last icon, or button, or div, etc).
|
||||
// and align with the content container.
|
||||
.minerva-user-navigation > *:last-child {
|
||||
margin-right: @contentPadding/-2;
|
||||
}
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
.notification-count {
|
||||
@circleSize: 24px;
|
||||
@borderSize: 2px;
|
||||
display: inline-block;
|
||||
margin: auto;
|
||||
height: @circleSize;
|
||||
background: @notificationBackgroundRead;
|
||||
|
|
|
@ -80,6 +80,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* When aligning a series of similar icons (e.g. list items)
|
||||
* prefer using a `:first-child` or `:last-child` selector.
|
||||
* The flush-left/right classes are appropriate when that's unavailable.
|
||||
*/
|
||||
.mw-ui-icon-flush-left {
|
||||
margin-left: -@icon-padding-md;
|
||||
}
|
||||
|
|
|
@ -17,6 +17,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.overlay-header-container {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.overlay-header {
|
||||
height: @overlayHeaderHeight;
|
||||
|
||||
|
|
Loading…
Reference in a new issue