import { css, Global } from '@emotion/react'; import React from 'react'; import useSiteToken from '../../../hooks/useSiteToken'; const GlobalDemoStyles: React.FC = () => { const { token } = useSiteToken(); const { antCls, iconCls } = token; return ( p { width: 100%; margin: 0.5em 0; font-size: 12px; word-break: break-word; padding-inline-end: 25px; } } &.expand &-meta { border-bottom: 1px dashed ${token.colorSplit}; border-radius: 0; } .code-expand-icon { position: relative; width: 16px; height: 16px; cursor: pointer; } .code-expand-icon-show, .code-expand-icon-hide { position: absolute; top: 0; left: 0; width: 100%; max-width: 100%; margin: 0; box-shadow: none; transition: all 0.4s; user-select: none; ${antCls}-row-rtl & { right: 0; left: auto; } } .code-expand-icon-show { opacity: 0.55; pointer-events: auto; &:hover { opacity: 1; } } .code-expand-icon${antCls}-tooltip-open .code-expand-icon-show { opacity: 1; } .code-expand-icon-hide { opacity: 0; pointer-events: none; } .highlight-wrapper { display: none; overflow: auto; border-radius: 0 0 ${token.borderRadius}px ${token.borderRadius}px; &-expand { display: block; } } .highlight { position: relative; pre { margin: 0; padding: 0; background: ${token.colorBgContainer}; } &:not(:first-child) { border-top: 1px dashed ${token.colorSplit}; } } &-actions { display: flex; justify-content: center; padding: 12px 0; border-top: 1px dashed ${token.colorSplit}; opacity: 0.7; transition: opacity 0.3s; &:hover { opacity: 1; } } &-actions &-code-action { position: relative; display: flex; align-items: center; width: 16px; height: 16px; color: ${token.colorTextSecondary}; cursor: pointer; transition: all 0.24s; &:hover { color: ${token.colorText}; } ${iconCls} { display: block; } } &-code-copy { width: 14px; height: 14px; font-size: 14px; text-align: center; background: ${token.colorBgContainer}; cursor: pointer; transition: transform 0.24s; &${iconCls}-check { color: ${token.green6} !important; font-weight: bold; } } &-codepen { width: 14px; height: 14px; overflow: hidden; border: 0; cursor: pointer; } &-riddle { width: 14px; height: 14px; overflow: hidden; border: 0; cursor: pointer; } &-codesandbox { width: 16px; height: 16px; overflow: hidden; border: 0; cursor: pointer; &:hover { opacity: 1; } } .highlight-wrapper:hover &-code-copy, .highlight-wrapper:hover &-codepen, .highlight-wrapper:hover &-codesandbox, .highlight-wrapper:hover &-riddle { opacity: 1; } pre { width: auto; margin: 0; code { background: ${token.colorBgContainer}; border: none; box-shadow: unset; } } &-debug { border-color: ${token.purple3}; } &-debug &-title a { color: ${token.purple6}; } } .demo-wrapper { position: relative; } .all-code-box-controls { position: absolute; top: -32px; inset-inline-end: 0; } ${antCls}-row-rtl { #components-tooltip-demo-placement, #components-popover-demo-placement, #components-popconfirm-demo-placement { .code-box-demo { direction: ltr; } } } `} /> ); }; export default GlobalDemoStyles;