123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _cssinjs = require("@ant-design/cssinjs");
- var _ = require(".");
- var _internal = require("../../theme/internal");
- const genSiderStyle = token => {
- const {
- componentCls,
- siderBg,
- motionDurationMid,
- motionDurationSlow,
- antCls,
- triggerHeight,
- triggerColor,
- triggerBg,
- headerHeight,
- zeroTriggerWidth,
- zeroTriggerHeight,
- borderRadiusLG,
- lightSiderBg,
- lightTriggerColor,
- lightTriggerBg,
- bodyBg
- } = token;
- return {
- [componentCls]: {
- position: 'relative',
- // fix firefox can't set width smaller than content on flex item
- minWidth: 0,
- background: siderBg,
- transition: `all ${motionDurationMid}, background 0s`,
- '&-has-trigger': {
- paddingBottom: triggerHeight
- },
- '&-right': {
- order: 1
- },
- [`${componentCls}-children`]: {
- height: '100%',
- // Hack for fixing margin collapse bug
- // https://github.com/ant-design/ant-design/issues/7967
- // solution from https://stackoverflow.com/a/33132624/3040605
- marginTop: -0.1,
- paddingTop: 0.1,
- [`${antCls}-menu${antCls}-menu-inline-collapsed`]: {
- width: 'auto'
- }
- },
- [`&-zero-width ${componentCls}-children`]: {
- overflow: 'hidden'
- },
- [`${componentCls}-trigger`]: {
- position: 'fixed',
- bottom: 0,
- zIndex: 1,
- height: triggerHeight,
- color: triggerColor,
- lineHeight: (0, _cssinjs.unit)(triggerHeight),
- textAlign: 'center',
- background: triggerBg,
- cursor: 'pointer',
- transition: `all ${motionDurationMid}`
- },
- [`${componentCls}-zero-width-trigger`]: {
- position: 'absolute',
- top: headerHeight,
- insetInlineEnd: token.calc(zeroTriggerWidth).mul(-1).equal(),
- zIndex: 1,
- width: zeroTriggerWidth,
- height: zeroTriggerHeight,
- color: triggerColor,
- fontSize: token.fontSizeXL,
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- background: siderBg,
- borderRadius: `0 ${(0, _cssinjs.unit)(borderRadiusLG)} ${(0, _cssinjs.unit)(borderRadiusLG)} 0`,
- cursor: 'pointer',
- transition: `background ${motionDurationSlow} ease`,
- '&::after': {
- position: 'absolute',
- inset: 0,
- background: 'transparent',
- transition: `all ${motionDurationSlow}`,
- content: '""'
- },
- '&:hover::after': {
- background: `rgba(255, 255, 255, 0.2)`
- },
- '&-right': {
- insetInlineStart: token.calc(zeroTriggerWidth).mul(-1).equal(),
- borderRadius: `${(0, _cssinjs.unit)(borderRadiusLG)} 0 0 ${(0, _cssinjs.unit)(borderRadiusLG)}`
- }
- },
- // Light
- '&-light': {
- background: lightSiderBg,
- [`${componentCls}-trigger`]: {
- color: lightTriggerColor,
- background: lightTriggerBg
- },
- [`${componentCls}-zero-width-trigger`]: {
- color: lightTriggerColor,
- background: lightTriggerBg,
- border: `1px solid ${bodyBg}`,
- // Safe to modify to any other color
- borderInlineStart: 0
- }
- }
- }
- };
- };
- var _default = exports.default = (0, _internal.genStyleHooks)(['Layout', 'Sider'], genSiderStyle, _.prepareComponentToken, {
- deprecatedTokens: _.DEPRECATED_TOKENS
- });
|