@elastic/eui
Version:
Elastic UI Component Library
29 lines (28 loc) • 1.6 kB
JavaScript
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import { css } from '@emotion/react';
import { logicalCSS, mathWithUnits, euiCanAnimate, euiYScrollWithShadows } from '../../global_styling';
export var euiContextMenuVariables = function euiContextMenuVariables(_ref) {
var euiTheme = _ref.euiTheme;
return {
panelWidth: mathWithUnits(euiTheme.size.base, function (x) {
return x * 16;
})
};
};
export var euiContextMenuStyles = function euiContextMenuStyles(euiThemeContext) {
var euiTheme = euiThemeContext.euiTheme;
var _euiContextMenuVariab = euiContextMenuVariables(euiThemeContext),
panelWidth = _euiContextMenuVariab.panelWidth;
return {
euiContextMenu: /*#__PURE__*/css(logicalCSS('width', panelWidth), " ", logicalCSS('max-width', '100%'), " position:relative;overflow:hidden;border-radius:", euiTheme.border.radius.medium, ";", euiCanAnimate, "{transition:height ", euiTheme.animation.fast, " ", euiTheme.animation.resistance, ";};label:euiContextMenu;"),
fixedHeight: /*#__PURE__*/css(".euiContextMenuPanel{display:flex;flex-direction:column;", logicalCSS('height', '100%'), ";}.euiContextMenuPanel__list{display:block;flex:1 1 0;", euiYScrollWithShadows(euiThemeContext, {
hasAnimatedOverflowShadow: true
}), ";};label:fixedHeight;")
};
};