From 91a8170596b992e14aaa2620e5e7711c52fa1bb9 Mon Sep 17 00:00:00 2001 From: Xiao Yijun Date: Fri, 17 Mar 2023 12:54:43 +0800 Subject: [PATCH] refactor(console): fix sie live preview button styles (#3447) --- .../src/components/Button/index.module.scss | 55 ++++++++++++++++++- .../console/src/components/Button/index.tsx | 11 +++- .../LivePreviewButton/index.module.scss | 13 ++--- .../components/LivePreviewButton/index.tsx | 14 +++-- .../src/components/Select/index.module.scss | 2 +- .../components/Preview/index.module.scss | 11 ---- .../components/Preview/index.tsx | 7 +-- .../ConnectorForm/BasicForm.module.scss | 1 - 8 files changed, 78 insertions(+), 36 deletions(-) diff --git a/packages/console/src/components/Button/index.module.scss b/packages/console/src/components/Button/index.module.scss index dd06d6188..9aa02836e 100644 --- a/packages/console/src/components/Button/index.module.scss +++ b/packages/console/src/components/Button/index.module.scss @@ -48,6 +48,15 @@ } } + .trailingIcon { + display: flex; + align-items: center; + + &:not(:first-child) { + margin-left: _.unit(2); + } + } + &.small { height: 30px; padding: 0 _.unit(3); @@ -61,6 +70,12 @@ margin-right: _.unit(1); } } + + .trailingIcon { + &:not(:first-child) { + margin-left: _.unit(1); + } + } } &.medium { @@ -92,7 +107,7 @@ border-style: solid; &:disabled { - border-color: var(--color-neutral-70); + border-color: var(--color-border); color: var(--color-neutral-70); } @@ -221,4 +236,42 @@ background-color: var(--color-hover-variant); } } + + &.violet { + background: var(--color-layer-1); + border: 1px solid var(--color-surface-5); + overflow: hidden; + position: relative; + + .icon, + .trailingIcon { + color: var(--color-primary); + } + + &:disabled { + color: var(--color-disabled); + + .icon, + .trailingIcon { + color: var(--color-primary-80); + } + } + + &:focus-visible { + border: 2px solid var(--color-primary-40); + outline: 4px solid var(--color-focused-variant); + } + + &:not(:disabled):hover { + background-color: var(--color-hover-variant); + + &::before { + content: ''; + position: absolute; + inset: 0; + background-color: var(--color-layer-1); + z-index: -1; + } + } + } } diff --git a/packages/console/src/components/Button/index.tsx b/packages/console/src/components/Button/index.tsx index 998c561e2..c978d8406 100644 --- a/packages/console/src/components/Button/index.tsx +++ b/packages/console/src/components/Button/index.tsx @@ -9,7 +9,14 @@ import { Ring as Spinner } from '@/components/Spinner'; import type DangerousRaw from '../DangerousRaw'; import * as styles from './index.module.scss'; -export type ButtonType = 'primary' | 'danger' | 'outline' | 'text' | 'default' | 'branding'; +export type ButtonType = + | 'primary' + | 'danger' + | 'outline' + | 'text' + | 'default' + | 'branding' + | 'violet'; type BaseProps = Omit, 'type' | 'size' | 'title'> & { htmlType?: 'button' | 'submit' | 'reset'; @@ -86,7 +93,7 @@ const Button = ({ {showSpinner && } {icon && {icon}} {title && (typeof title === 'string' ? {t(title)} : title)} - {trailingIcon} + {trailingIcon && {trailingIcon}} ); }; diff --git a/packages/console/src/components/LivePreviewButton/index.module.scss b/packages/console/src/components/LivePreviewButton/index.module.scss index d40f51c09..dfa39aa05 100644 --- a/packages/console/src/components/LivePreviewButton/index.module.scss +++ b/packages/console/src/components/LivePreviewButton/index.module.scss @@ -1,10 +1,7 @@ -@use '@/scss/underscore' as _; - -.icon { +.defaultIcon { color: var(--color-text-secondary); - margin-left: _.unit(1.5); - - &.disabled { - color: var(--color-neutral-70); - } +} + +.disabledDefaultIcon { + color: var(--color-neutral-70); } diff --git a/packages/console/src/components/LivePreviewButton/index.tsx b/packages/console/src/components/LivePreviewButton/index.tsx index 28e5fdc37..d5bbd19a0 100644 --- a/packages/console/src/components/LivePreviewButton/index.tsx +++ b/packages/console/src/components/LivePreviewButton/index.tsx @@ -7,19 +7,18 @@ import ExternalLinkIcon from '@/assets/images/external-link.svg'; import { AppEndpointsContext } from '@/contexts/AppEndpointsProvider'; import useConfigs from '@/hooks/use-configs'; -import type { Props as ButtonProps } from '../Button'; +import type { Props as ButtonProps, ButtonType } from '../Button'; import Button from '../Button'; import { Tooltip } from '../Tip'; import * as styles from './index.module.scss'; type Props = { size?: ButtonProps['size']; + type?: ButtonType; isDisabled: boolean; - className?: string; - iconClassName?: string; }; -const LivePreviewButton = ({ size = 'medium', isDisabled, className, iconClassName }: Props) => { +const LivePreviewButton = ({ size, type, isDisabled }: Props) => { const { configs, updateConfigs } = useConfigs(); const { userEndpoint } = useContext(AppEndpointsContext); const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); @@ -28,12 +27,15 @@ const LivePreviewButton = ({ size = 'medium', isDisabled, className, iconClassNa