mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
e1d0f1e61c
- Make sure common styles are loaded for all components - Add icon in user menu Fixes renders of: - Language button (no top margin and button styles) - MenuPortal (no left margins) Change-Id: I98b4820b6d91d46fd27a1d433d5bacd187a7cbb0
12 lines
388 B
JavaScript
12 lines
388 B
JavaScript
import mustache from 'mustache';
|
|
import '../resources/skins.vector.styles/MenuDropdown.less';
|
|
import { vectorMenuTemplate, moreData, variantsData } from './MenuDropdown.stories.data';
|
|
|
|
export default {
|
|
title: 'MenuDropdown'
|
|
};
|
|
|
|
export const more = () => mustache.render( vectorMenuTemplate, moreData );
|
|
|
|
export const variants = () => mustache.render( vectorMenuTemplate, variantsData );
|