| import React from 'react'; |
| import { css, Global } from '@emotion/react'; |
| import { useTheme } from 'antd-style'; |
|
|
| const GlobalDemoStyles: React.FC = () => { |
| const token = useTheme(); |
|
|
| const { antCls, iconCls } = token; |
|
|
| return ( |
| <Global |
| styles={css` |
| .code-boxes-col-1-1 { |
| width: 100%; |
| } |
| |
| .code-boxes-col-2-1 { |
| display: inline-block; |
| vertical-align: top; |
| } |
| |
| .code-box { |
| position: relative; |
| display: inline-block; |
| width: calc(100% - ${token.lineWidth * 2}px); |
| margin: 0 0 ${token.margin}px; |
| background-color: ${token.colorBgContainer}; |
| border: 1px solid ${token.colorSplit}; |
| border-radius: ${token.borderRadiusLG}px; |
| transition: all ${token.motionDurationMid}; |
| |
| &.code-box-simplify { |
| border-radius: 0; |
| margin-bottom: 0; |
| |
| .code-box-demo { |
| padding: 0; |
| border-bottom: 0; |
| } |
| } |
| |
| .code-box-title { |
| &, |
| a { |
| color: ${token.colorText} !important; |
| background: ${token.colorBgContainer}; |
| } |
| } |
| |
| .code-box-demo { |
| background-color: ${token.colorBgContainer}; |
| border-radius: ${token.borderRadiusLG}px ${token.borderRadiusLG}px 0 0; |
| > .demo { |
| overflow: auto; |
| } |
| } |
| |
| .markdown { |
| pre { |
| margin: 0.5em 0; |
| padding: 6px 12px; |
| } |
| |
| pre code { |
| margin: 0; |
| background: #f5f5f5; |
| } |
| } |
| |
| &:target { |
| border: 1px solid ${token.colorPrimary}; |
| } |
| |
| &-title { |
| position: absolute; |
| top: -14px; |
| padding: 1px 8px; |
| color: #777; |
| background: ${token.colorBgContainer}; |
| border-radius: ${token.borderRadius}px ${token.borderRadius}px 0 0; |
| transition: background-color 0.4s; |
| margin-inline-start: ${token.margin}px; |
| |
| a, |
| a:hover { |
| color: ${token.colorText}; |
| font-weight: 500; |
| font-size: ${token.fontSize}px; |
| } |
| } |
| |
| &-description { |
| padding: 18px 24px 12px; |
| } |
| |
| a.edit-button { |
| position: absolute; |
| top: 7px; |
| inset-inline-end: -16px; |
| font-size: ${token.fontSizeSM}px; |
| text-decoration: none; |
| background: inherit; |
| transform: scale(0.9); |
| padding-inline-end: ${token.paddingXXS}px; |
| |
| ${iconCls} { |
| color: ${token.colorTextSecondary}; |
| transition: all ${token.motionDurationSlow}; |
| |
| &:hover { |
| color: ${token.colorText}; |
| } |
| } |
| |
| ${antCls}-row${antCls}-row-rtl & { |
| inset-inline-end: auto; |
| inset-inline-start: -22px; |
| } |
| } |
| |
| &-demo { |
| padding: 42px 24px 50px; |
| color: ${token.colorText}; |
| border-bottom: 1px solid ${token.colorSplit}; |
| } |
| |
| iframe { |
| width: 100%; |
| border: 0; |
| } |
| |
| &-meta { |
| &.markdown { |
| position: relative; |
| width: 100%; |
| font-size: ${token.fontSize}px; |
| border-radius: 0 0 ${token.borderRadius}px ${token.borderRadius}px; |
| transition: background-color 0.4s; |
| } |
| |
| blockquote { |
| line-height: 1.5; |
| } |
| |
| h4, |
| section& p { |
| margin: 0; |
| } |
| |
| > p { |
| width: 100%; |
| margin: 0.5em 0; |
| font-size: ${token.fontSizeSM}px; |
| 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; |
| } |
| |
| .highlight-wrapper { |
| display: none; |
| 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: ${token.paddingSM}px 0; |
| border-top: 1px dashed ${token.colorSplit}; |
| opacity: 0.7; |
| transition: opacity ${token.motionDurationSlow}; |
| |
| &: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: ${token.fontSize}px; |
| 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; |
| } |
| |
| &-codeblock { |
| width: 16px; |
| height: 16px; |
| overflow: hidden; |
| border: 0; |
| cursor: pointer; |
| max-width: 100% !important; |
| } |
| |
| &-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; |
| padding: ${token.paddingSM}px ${token.padding}px; |
| font-size: ${token.fontSize}px; |
| } |
| } |
| |
| &-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; |
| display: flex; |
| align-items: center; |
| column-gap: ${token.marginXS}px; |
| } |
| |
| ${antCls}-btn { |
| &.icon-enabled { |
| background-color: ${token.colorFillSecondary}; |
| opacity: 1; |
| ${iconCls} { |
| color: ${token.colorTextBase}; |
| font-weight: bold; |
| } |
| } |
| } |
| |
| ${antCls}-row-rtl { |
| #tooltip-demo-placement, |
| #popover-demo-placement, |
| #popconfirm-demo-placement { |
| .code-box-demo { |
| direction: ltr; |
| } |
| } |
| } |
| `} |
| /> |
| ); |
| }; |
|
|
| export default GlobalDemoStyles; |
|
|