2019-04-30 11:11:25 +08:00
|
|
|
// 类名前缀
|
2019-09-09 00:53:39 +08:00
|
|
|
$ns: '' !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// 颜色
|
|
|
|
$white: #fff !default;
|
|
|
|
$gray100: #f8f9fa !default;
|
|
|
|
$gray200: #e9ecef !default;
|
|
|
|
$gray300: #dee2e6 !default;
|
|
|
|
$gray400: #ced4da !default;
|
|
|
|
$gray500: #adb5bd !default;
|
|
|
|
$gray600: #6c757d !default;
|
|
|
|
$gray700: #495057 !default;
|
|
|
|
$gray800: #343a40 !default;
|
|
|
|
$gray900: #212529 !default;
|
|
|
|
$black: #000 !default;
|
|
|
|
|
|
|
|
$orange: #fd7e14 !default;
|
|
|
|
$yellow: #ffc107 !default;
|
|
|
|
$green: #28a745 !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$turquoise: #00d1b2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$cyan: #17a2b8 !default;
|
|
|
|
$blue: #007bff !default;
|
|
|
|
$purple: #6f42c1 !default;
|
|
|
|
$red: #dc3545 !default;
|
|
|
|
|
|
|
|
$primary: $blue !default;
|
|
|
|
$secondary: $gray600 !default;
|
|
|
|
$success: $green !default;
|
|
|
|
$info: $cyan !default;
|
|
|
|
$warning: $yellow !default;
|
|
|
|
$danger: $red !default;
|
|
|
|
$light: $gray100 !default;
|
|
|
|
$dark: $gray800 !default;
|
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
$remFactor: 16px !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// 字体相关
|
2020-02-26 16:33:42 +08:00
|
|
|
$fontFamilySansSerif: -apple-system, BlinkMacSystemFont, 'SF Pro SC',
|
|
|
|
'SF Pro Text', 'Helvetica Neue', Helvetica, 'PingFang SC', 'Segoe UI', Roboto,
|
|
|
|
'Hiragino Sans GB', 'Arial', 'microsoft yahei ui', 'Microsoft YaHei', SimSun,
|
|
|
|
sans-serif !default;
|
|
|
|
$fontFamilyMonospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
|
|
|
|
'Courier New', monospace !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$fontFamilyBase: $fontFamilySansSerif !default;
|
|
|
|
|
2020-02-26 16:33:42 +08:00
|
|
|
$fontSizeBase: px2rem(
|
|
|
|
14px
|
|
|
|
) !default; // Assumes the browser default, typically `16px`
|
2019-05-15 16:10:20 +08:00
|
|
|
$fontSizeMd: px2rem(16px) !default;
|
|
|
|
$fontSizeLg: px2rem(20px) !default;
|
2019-09-10 19:47:48 +08:00
|
|
|
$fontSizeXl: px2rem(24px) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$fontSizeSm: px2rem(12px) !default;
|
|
|
|
$fontSizeXs: px2rem(11px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$fontWeightLighter: lighter !default;
|
|
|
|
$fontWeightLight: 300 !default;
|
|
|
|
$fontWeightNormal: 400 !default;
|
|
|
|
$fontWeightBold: 700 !default;
|
|
|
|
$fontWeightBolder: bolder !default;
|
|
|
|
|
|
|
|
$fontWeightBase: $fontWeightNormal !default;
|
|
|
|
|
|
|
|
// 行高
|
|
|
|
$lineHeightBase: 1.5 !default;
|
|
|
|
$lineHeightLg: 1.5 !default;
|
|
|
|
$lineHeightSm: 1.5 !default;
|
|
|
|
|
|
|
|
$h1-fontSize: $fontSizeBase * 2.5 !default;
|
|
|
|
$h2-fontSize: $fontSizeBase * 2 !default;
|
|
|
|
$h3-fontSize: $fontSizeBase * 1.75 !default;
|
|
|
|
$h4-fontSize: $fontSizeBase * 1.5 !default;
|
|
|
|
$h5-fontSize: $fontSizeBase * 1.25 !default;
|
|
|
|
$h6-fontSize: $fontSizeBase !default;
|
|
|
|
|
|
|
|
// 边框
|
2019-05-15 16:10:20 +08:00
|
|
|
$borderWidth: px2rem(1px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$borderColor: $gray300 !default;
|
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
$borderRadius: 0.142rem !default;
|
|
|
|
$borderRadiusMd: 0.285rem !default;
|
|
|
|
$borderRadiusLg: 0.428rem !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
$boxShadowSm: 0 0.125rem 0.25rem rgba($black, 0.075) !default;
|
|
|
|
$boxShadow: 0 0.5rem 1rem rgba($black, 0.15) !default;
|
|
|
|
$boxShadowLg: 0 1rem 3rem rgba($black, 0.175) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// 窗口适配
|
2020-02-26 16:33:42 +08:00
|
|
|
$breakpoints: (
|
|
|
|
xs: 0,
|
2019-11-13 19:06:27 +08:00
|
|
|
sm: 576px,
|
|
|
|
md: 768px,
|
|
|
|
lg: 992px,
|
2020-02-26 16:33:42 +08:00
|
|
|
xl: 1200px
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// 段落间距
|
2019-05-15 16:10:20 +08:00
|
|
|
$paragraph-marginBottom: 1rem !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$text-color: $gray900 !default;
|
|
|
|
$text--muted-color: lighten($text-color, 25%) !default;
|
|
|
|
$text--loud-color: darken($text-color, 10%) !default;
|
|
|
|
|
|
|
|
$background: $white !default;
|
|
|
|
|
|
|
|
$code-color: $red !default;
|
|
|
|
$code-background: $background !default;
|
|
|
|
|
|
|
|
$pre-color: $text-color !default;
|
|
|
|
$pre-background: $background !default;
|
|
|
|
|
|
|
|
$link-color: $primary !default;
|
|
|
|
$link-decoration: none !default;
|
|
|
|
$link-onHover-color: darken($link-color, 15%) !default;
|
|
|
|
$link-onHover-decoration: underline !default;
|
|
|
|
|
|
|
|
$body-bg: lighten($light, 1%) !default;
|
|
|
|
$body-size: $fontSizeBase !default;
|
|
|
|
$body-color: $text-color !default;
|
|
|
|
$body-weight: $fontWeightBase;
|
|
|
|
$body-lineHeight: $lineHeightBase;
|
|
|
|
|
|
|
|
$zindex-affix: 900 !default;
|
|
|
|
$zindex-dropdown: 1000 !default;
|
|
|
|
$zindex-sticky: 1100 !default;
|
|
|
|
$zindex-fixed: 1200 !default;
|
2020-08-20 12:16:26 +08:00
|
|
|
$zindex-popover: 1300 !default;
|
|
|
|
$zindex-modal: 1400 !default;
|
2019-11-19 16:35:52 +08:00
|
|
|
$zindex-contextmenu: 1500 !default;
|
|
|
|
$zindex-tooltip: 1600 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$zindex-toast: 2000 !default;
|
|
|
|
|
|
|
|
$gap-xs: px2rem(5px) !default;
|
|
|
|
$gap-sm: px2rem(10px) !default;
|
|
|
|
$gap-base: px2rem(15px) !default;
|
|
|
|
$gap-md: px2rem(20px) !default;
|
|
|
|
$gap-lg: px2rem(30px) !default;
|
|
|
|
|
2019-11-09 17:04:48 +08:00
|
|
|
$icon-color: $gray600 !default;
|
|
|
|
$icon-onHover-color: $gray900 !default;
|
|
|
|
|
2020-07-04 22:56:58 +08:00
|
|
|
$label--default-bg: $gray700 !default;
|
|
|
|
$label--primary-bg: $primary !default;
|
|
|
|
$label--success-bg: $success !default;
|
|
|
|
$label--info-bg: $info !default;
|
|
|
|
$label--warning-bg: $warning !default;
|
|
|
|
$label--danger-bg: $danger !default;
|
|
|
|
|
|
|
|
$label-color: #fff !default;
|
|
|
|
$label-link--hover-color: #fff !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// Components
|
|
|
|
$scrollbar-width: px2rem(17px) !default;
|
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
$Layout-aside-width: px2rem(200px) !default;
|
|
|
|
$Layout-aside--sm-width: px2rem(150px) !default;
|
|
|
|
$Layout-aside--md-width: px2rem(250px) !default;
|
|
|
|
$Layout-aside--lg-width: px2rem(300px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Layout-aside--folded-width: px2rem(60px) !default;
|
|
|
|
$Layout-aside-bg: $dark !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Layout-aside-onAcitve-bg: saturate(
|
|
|
|
darken($Layout-aside-bg, 5%),
|
|
|
|
2.5%
|
|
|
|
) !default;
|
|
|
|
$Layout-aside-subList-bg: saturate(
|
|
|
|
darken($Layout-aside-bg, 10%),
|
|
|
|
2.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Layout-aside-onHover-bg: saturate(darken($Layout-aside-bg, 3%), 2.5%) !default;
|
|
|
|
$Layout-aside-color: desaturate(lighten($Layout-aside-bg, 40%), 10%) !default;
|
|
|
|
|
|
|
|
$Layout-asideDivider-margin: $gap-sm 0 !default;
|
|
|
|
$Layout-asideDivider-bg: #2e3344 !default;
|
|
|
|
|
|
|
|
$Layout-asideLink-onHover-iconSize: inherit !default;
|
|
|
|
$Layout-asideLink-iconColor: inherit !default;
|
|
|
|
$Layout-asideLink-onHover-iconColor: inherit !default;
|
|
|
|
$Layout-asideLink-fontSize: $fontSizeBase !default;
|
|
|
|
$Layout-asideLink-color: #b4b6bd !default;
|
|
|
|
$Layout-asideLink-onHover-color: #fff !default;
|
|
|
|
$Layout-asideLink-onActive-color: #fff !default;
|
2020-06-08 17:28:08 +08:00
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
$Layout-asideLink-arrowColor: $Layout-asideLink-color !default;
|
|
|
|
$Layout-asideLink-onActive-arrowColor: $Layout-asideLink-onActive-color !default;
|
|
|
|
$Layout-asideLabel-color: darken($Layout-aside-color, 10%) !default;
|
|
|
|
$Layout-brand-bg: $dark !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Layout-brandBar-color: desaturate(
|
|
|
|
lighten($Layout-brand-bg, 40%),
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Layout-brand-color: lighten($Layout-brandBar-color, 25%) !default;
|
|
|
|
$Layout-header-height: px2rem(50px) !default;
|
|
|
|
$Layout-headerBar-borderBottom: none !default;
|
|
|
|
$Layout-header-bg: $white !default;
|
2019-10-21 19:03:56 +08:00
|
|
|
$Layout-header-boxShadow: 0 px2rem(2px) px2rem(2px) rgba(0, 0, 0, 0.05),
|
2020-02-26 16:33:42 +08:00
|
|
|
0 1px 0 rgba(0, 0, 0, 0.05) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Layout-nav-height: px2rem(40px) !default;
|
2019-09-03 20:11:29 +08:00
|
|
|
$Layout-nav-lgHeight: px2rem(50px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Layout-nav--folded-height: px2rem(50px) !default;
|
|
|
|
$Layout--offscreen-width: 75% !default;
|
|
|
|
|
|
|
|
// Grid
|
|
|
|
$Grid-columns: 12 !default;
|
|
|
|
$Grid-gutterWidth: px2rem(30px) !default;
|
|
|
|
|
|
|
|
// container
|
|
|
|
// $container-tablet: (720px + $Grid-gutterWidth) !default;
|
|
|
|
// $container-sm: $container-tablet !default;
|
|
|
|
// $container-desktop: (940px + $Grid-gutterWidth) !default;
|
|
|
|
// $container-md: $container-desktop !default;
|
|
|
|
// $container-large-desktop: (1140px + $Grid-gutterWidth) !default;
|
|
|
|
// $container-lg: $container-large-desktop !default;
|
|
|
|
|
|
|
|
// Modal
|
|
|
|
$Modal-bg: $background !default;
|
|
|
|
$Modal-overlay-bg: rgba(0, 0, 0, 0.6) !default;
|
|
|
|
$Modal-content-startMarginTop: px2rem(60px) !default;
|
|
|
|
$Modal-content-stepMarginTop: px2rem(30px) !default;
|
2020-08-01 17:25:17 +08:00
|
|
|
$Modal-content-minHeight: unset !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Modal-content-borderWidth: $borderWidth !default;
|
|
|
|
$Modal-content-borderColor: $borderColor !default;
|
|
|
|
$Modal-content-borderRadius: $borderRadius !default;
|
|
|
|
|
|
|
|
$Modal-header-height: px2rem(40px) !default;
|
|
|
|
$Modal-header-bg: darken($Modal-bg, 2.5%) !default;
|
|
|
|
$Modal-title-lineHeight: $lineHeightBase !default;
|
|
|
|
$Modal-title-fontSize: $fontSizeBase !default;
|
|
|
|
$Modal-title-color: $text--loud-color !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Modal-header-paddingY: (
|
|
|
|
$Modal-header-height - $Modal-title-lineHeight * $Modal-title-fontSize
|
|
|
|
) / 2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Modal-header-paddingX: $gap-md !default;
|
|
|
|
$Modal-close-width: px2rem(12px) !default;
|
|
|
|
$Modal-close-color: $text--muted-color !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Model-close-onHover-color: $text-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Modal-body-paddingX: $gap-md !default;
|
|
|
|
$Modal-body-paddingY: $gap-md !default;
|
|
|
|
$Modal-body--noHeader-paddingTop: $gap-base;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Modal-body-borderTop: $Modal-content-borderWidth solid
|
|
|
|
lighten($Modal-content-borderColor, 5%) !default;
|
|
|
|
$Modal-body-borderBottom: $Modal-content-borderWidth solid
|
|
|
|
lighten($Modal-content-borderColor, 5%) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Modal-footer-padding: $gap-sm !default;
|
|
|
|
$Modal-footer-marginY: 0 !default;
|
|
|
|
$Modal-footer-marginX: 0 !default;
|
|
|
|
|
|
|
|
$Modal-widthBase: px2rem(500px);
|
|
|
|
$Modal-widthSm: px2rem(350px);
|
|
|
|
$Modal-widthMd: px2rem(800px);
|
|
|
|
$Modal-widthLg: px2rem(1100px);
|
|
|
|
$Modal-widthXl: 90%;
|
|
|
|
|
|
|
|
$Drawer-bg: $background !default;
|
|
|
|
$Drawer-overlay-bg: rgba(0, 0, 0, 0.6) !default;
|
|
|
|
$Drawer-content-borderWidth: $borderWidth !default;
|
|
|
|
$Drawer-content-borderColor: $borderColor !default;
|
|
|
|
$Drawer-content-borderRadius: 0 !default;
|
|
|
|
|
|
|
|
$Drawer-header-padding: $gap-base !default;
|
|
|
|
$Drawer-header-bg: darken($Drawer-bg, 2.5%) !default;
|
|
|
|
$Drawer-title-fontSize: $fontSizeMd !default;
|
|
|
|
$Drawer-title-fontColor: $text--loud-color !default;
|
|
|
|
$Drawer-close-color: rgba(255, 255, 255, 0.8) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Drawer-close-onHover-color: rgba(255, 255, 255, 1) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Drawer-body-padding: $gap-base !default;
|
|
|
|
$Drawer-footer-padding: $gap-base !default;
|
|
|
|
|
2019-11-13 19:06:27 +08:00
|
|
|
$Drawer-widthBase: 80% !default;
|
|
|
|
$Drawer-widthXs: px2rem(200px) !default;
|
|
|
|
$Drawer-widthSm: px2rem(300px) !default;
|
|
|
|
$Drawer-widthMd: px2rem(500px) !default;
|
|
|
|
$Drawer-widthLg: px2rem(800px) !default;
|
|
|
|
$Drawer-widthXl: 90% !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Tooltip
|
|
|
|
$Tooltip-fontSize: $fontSizeSm !default;
|
|
|
|
$Tooltip-bg: $background !default;
|
|
|
|
$Tooltip-maxWidth: px2rem(240px) !default;
|
|
|
|
$Tooltip-minWidth: auto !default;
|
|
|
|
$Tooltip-borderWidth: $borderWidth !default;
|
|
|
|
$Tooltip-borderColor: $borderColor !default;
|
|
|
|
$Tooltip-borderRadius: $borderRadiusLg !default;
|
|
|
|
$Tooltip-boxShadow: $boxShadow !default;
|
|
|
|
|
|
|
|
$Tooltip-title-bg: darken($Tooltip-bg, 3%) !default;
|
|
|
|
$Tooltip-title-color: $text--loud-color !default;
|
|
|
|
$Tooltip-title-paddingY: $gap-xs !default;
|
|
|
|
$Tooltip-title-paddingX: $gap-sm !default;
|
|
|
|
|
|
|
|
$Tooltip-body-color: $text-color !default;
|
|
|
|
$Tooltip-body-paddingY: $gap-sm !default;
|
|
|
|
$Tooltip-body-paddingX: $gap-sm !default;
|
|
|
|
|
|
|
|
$Tooltip-arrow-width: px2rem(16px) !default;
|
|
|
|
$Tooltip-arrow-height: px2rem(8px) !default;
|
|
|
|
$Tooltip-arrow-color: $Tooltip-bg !default;
|
|
|
|
$Tooltip-arrow-width: 1rem !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Tooltip-arrow-height: 0.5rem !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Tooltip-arrow-color: $Tooltip-bg !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Tooltip-arrow-outerColor: fade-in($Tooltip-borderColor, 0.05) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Tooltip--attr-color: $background !default;
|
|
|
|
$Tooltip--attr-bg: rgba(0, 0, 0, 0.7) !default;
|
|
|
|
$Tooltip--attr-borderWidth: 0 !default;
|
|
|
|
$Tooltip--attr-borderColor: $borderColor !default;
|
|
|
|
$Tooltip--attr-borderRadius: $borderRadius !default;
|
|
|
|
$Tooltip--attr-boxShadow: $boxShadow !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Tooltip--attr-fontSize: $fontSizeSm !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Tooltip--attr-lineHeigt: $lineHeightBase !default;
|
|
|
|
$Tooltip--attr-paddingX: px2rem(10px) !default;
|
|
|
|
$Tooltip--attr-paddingY: px2rem(2px) !default;
|
|
|
|
$Tooltip--attr-gap: $gap-sm;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Tooltip--attr-transition: all 0.15s ease-in-out !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// toast
|
|
|
|
$Toast-width: px2rem(300px) !default;
|
|
|
|
$Toast-box-shadow: $boxShadow !default;
|
|
|
|
$Toast-borderRadius: $borderRadiusLg !default;
|
|
|
|
$Toast-paddingY: $gap-base !default;
|
|
|
|
$Toast-paddingX: $gap-base !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Toast-paddingL: px2rem(40px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Toast-border-width: 0 !default;
|
|
|
|
$Toast-opacity: 0.8 !default;
|
2020-06-09 14:44:38 +08:00
|
|
|
$Toast-title-display: block !default;
|
|
|
|
$Toast-icon-fillHeight: true !default;
|
|
|
|
$Toast-icon-width: px2rem(30px) !default;
|
|
|
|
$Toast-icon-height: $Toast-icon-width !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Toast-color: $white !default;
|
|
|
|
|
|
|
|
$Toast--danger-color: $Toast-color !default;
|
|
|
|
$Toast--danger-bgColor: $red !default;
|
|
|
|
$Toast--danger-borderColor: $red !default;
|
|
|
|
|
|
|
|
$Toast--info-color: $Toast-color !default;
|
|
|
|
$Toast--info-bgColor: $info !default;
|
|
|
|
$Toast--info-borderColor: $info !default;
|
|
|
|
|
|
|
|
$Toast--success-color: $Toast-color !default;
|
|
|
|
$Toast--success-bgColor: $success !default;
|
|
|
|
$Toast--success-borderColor: $success !default;
|
|
|
|
|
|
|
|
$Toast--warning-color: $Toast-color !default;
|
|
|
|
$Toast--warning-bgColor: $warning !default;
|
|
|
|
$Toast--warning-borderColor: $warning !default;
|
|
|
|
|
2020-06-09 14:44:38 +08:00
|
|
|
$Toast-close-color: $white !default;
|
|
|
|
$Toast-close--onHover-color: $Toast-close-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// alert
|
|
|
|
$Alert-fontSize: $fontSizeBase !default;
|
|
|
|
$Alert-boxShadow: none !default;
|
|
|
|
$Alert-paddingX: $gap-base !default;
|
|
|
|
$Alert-paddingY: $gap-base !default;
|
|
|
|
$Alert-borderWidth: $borderWidth !default;
|
|
|
|
$Alert-borderColor: transparent !default;
|
|
|
|
$Alert-borderRadius: $borderRadiusMd !default;
|
|
|
|
$Alert-marginBottom: $gap-md !default;
|
|
|
|
|
|
|
|
$Alert--danger-color: #a94442 !default;
|
|
|
|
$Alert--danger-bg: #f2dede !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Alert--danger-borderColor: darken(
|
|
|
|
adjust-hue($Alert--danger-bg, -10),
|
|
|
|
5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Alert--info-color: #31708f !default;
|
|
|
|
$Alert--info-bg: #d9edf7 !default;
|
|
|
|
$Alert--info-borderColor: darken(adjust-hue($Alert--info-bg, -10), 5%) !default;
|
|
|
|
|
|
|
|
$Alert--success-color: #3c763d !default;
|
|
|
|
$Alert--success-bg: #dff0d8 !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Alert--success-borderColor: darken(
|
|
|
|
adjust-hue($Alert--success-bg, -10),
|
|
|
|
5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Alert--warning-color: #8a6d3b !default;
|
|
|
|
$Alert--warning-bg: #fcf8e3 !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Alert--warning-borderColor: darken(
|
|
|
|
adjust-hue($Alert--warning-bg, -10),
|
|
|
|
5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// spinner
|
|
|
|
$Spinner-overlay-bg: rgba(255, 255, 255, 0.4) !default;
|
|
|
|
$Spinner-width: px2rem(26px) !default;
|
|
|
|
$Spinner-height: px2rem(26px) !default;
|
|
|
|
$Spinner--lg-width: px2rem(50px) !default;
|
|
|
|
$Spinner--lg-height: px2rem(50px) !default;
|
2020-05-15 16:47:08 +08:00
|
|
|
$Spinner--sm-width: px2rem(16px) !default;
|
|
|
|
$Spinner--sm-height: px2rem(16px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-10-30 20:10:23 +08:00
|
|
|
$Spinner-bg: url('./spinner-default.svg?__inline') !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Tabs
|
|
|
|
$Tabs-linkFontSize: $fontSizeBase !default;
|
|
|
|
$Tabs-borderColor: $borderColor !default;
|
|
|
|
$Tabs-borderWidth: $borderWidth !default;
|
|
|
|
$Tabs-borderRadius: $borderRadius !default;
|
|
|
|
$Tabs-color: $text-color !default;
|
|
|
|
$Tabs-onDisabled-color: $gray600 !default;
|
|
|
|
$Tabs-onHover-borderColor: $gray200 !default;
|
|
|
|
$Tabs-onActive-color: $gray700 !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Tabs-onActive-borderColor: $gray300 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Tabs-onActive-bg: $background !default;
|
2019-09-25 17:06:08 +08:00
|
|
|
$Tabs-linkPadding: $gap-sm $gap-base !default;
|
|
|
|
$Tabs-linkMargin: 0 px2rem(3px) 0 0 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Tabs-content-bg: $background !default;
|
2019-09-25 17:06:08 +08:00
|
|
|
|
|
|
|
$Tabs--line-borderColor: $borderColor !default;
|
|
|
|
$Tabs--line-onHover-color: $primary !default;
|
|
|
|
$Tabs--line-onHover-borderColor: $primary !default;
|
|
|
|
$Tabs--line-borderWidth: px2rem(2px) !default;
|
|
|
|
$Tabs--line-linkPadding: 10px 0 !default;
|
|
|
|
$Tabs--line-linkMargin: 0 40px 0 0 !default;
|
|
|
|
$Tabs--line-content-bg: transparent !default;
|
2019-10-21 19:03:56 +08:00
|
|
|
$Tabs--line-content-padding: 20px 0 !default;
|
2019-09-25 17:06:08 +08:00
|
|
|
$Tabs--card-padding: px2rem(6px) 0 0 px2rem(10px);
|
2020-05-27 13:52:25 +08:00
|
|
|
$Tabs--card-bg: #f6f8f8 !default;
|
2019-09-25 17:06:08 +08:00
|
|
|
$Tabs--card-borderTopColor: $borderColor !default;
|
|
|
|
$Tabs--card-onActive-borderColor: $borderColor !default;
|
|
|
|
$Tabs--card-onActive-bg: $background !default;
|
|
|
|
$Tabs--card-linkPadding: px2rem(10px) px2rem(10px) !default;
|
|
|
|
$Tabs--card-linkMargin: 0 10px 0 0 !default;
|
|
|
|
|
2019-09-09 00:53:39 +08:00
|
|
|
$Tabs--radio-bg: #eaf6fe !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-10-29 12:37:20 +08:00
|
|
|
$Tabs--vertical-onActive-borderColor: $primary !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// Nav
|
|
|
|
$Nav-item-fontSize: $fontSizeBase !default;
|
|
|
|
$Nav-item-borderRadius: $borderRadiusMd !default;
|
|
|
|
$Nav-item-color: $text-color !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Nav-item-onHover-color: $text--loud-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Nav-item-onActive-color: $white !default;
|
|
|
|
$Nav-item-onDisabled-color: $text--muted-color !default;
|
|
|
|
$Nav-item-bg: transparent !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Nav-item-onHover-bg: rgba(0, 0, 0, 0.05) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Nav-item-onActive-bg: $info !default;
|
|
|
|
$Nav-item-onActive-borderLeft: 4px solid transparent !default;
|
|
|
|
$Nav-subItem-onActiveBeforeBg: #e5eaeb !default;
|
|
|
|
$Nav-subItem-fontSize: $fontSizeBase !default;
|
|
|
|
|
|
|
|
// CRUD
|
|
|
|
$Crud-toolbar-lineHeight: $lineHeightBase !default;
|
|
|
|
$Crud-toolbar-height: px2rem(30px) !default;
|
|
|
|
$Crud-toolbar-gap: $gap-xs !default;
|
|
|
|
|
|
|
|
// Table
|
|
|
|
$Table-bg: $background !default;
|
|
|
|
$Table-fontSize: $fontSizeBase !default;
|
|
|
|
$Table-color: $text-color !default;
|
|
|
|
$Table-lineHeight: $lineHeightBase !default;
|
|
|
|
$Table-borderColor: $borderColor !default;
|
|
|
|
$Table-borderWidth: $borderWidth !default;
|
|
|
|
$Table-borderRadius: $borderRadius !default;
|
|
|
|
$Table-fixedTop-boxShadow: $boxShadow !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Table-fixedLeft-boxShadow: 0.42rem 0 0.42rem -0.28rem rgba($black, 0.15) !default;
|
|
|
|
$Table-fixedRight-boxShadow: -0.42rem 0 0.42rem -0.28rem rgba($black, 0.15) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Table-toolbar-paddingX: $gap-sm !default;
|
|
|
|
$Table-toolbar-paddingY: $gap-sm !default;
|
2020-05-27 13:52:25 +08:00
|
|
|
$Table-thead-bg: #f6f8f8 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Table-thead-fontSize: $fontSizeBase !default;
|
|
|
|
$Table-thead-color: $text--loud-color !default;
|
|
|
|
$Table-thead-borderColor: $Table-borderColor !default;
|
|
|
|
$Table-thead-borderWidth: $Table-borderWidth !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Table-thead-iconColor: $icon-color !default;
|
2019-11-11 19:31:22 +08:00
|
|
|
$Table-tree-borderColor: $Table-borderColor !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$TableCell-height: px2rem(40px) !default;
|
|
|
|
$TableCell-paddingX: $gap-sm !default;
|
|
|
|
$TableCell--edge-paddingX: $gap-md !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$TableCell-paddingY: ($TableCell-height - $Table-fontSize * $Table-lineHeight) /
|
|
|
|
2;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Table-placeholder-height: px2rem(100px) !default;
|
|
|
|
|
|
|
|
// $Table-checkCell-width: px2rem(50px) !default;
|
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
$Table-strip-bg: lighten(#f6f8f8, 1%) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Table-onHover-bg: darken($Table-strip-bg, 2%) !default;
|
|
|
|
$Table-onHover-borderColor: darken($Table-onHover-bg, 10%) !default;
|
|
|
|
$Table-onHover-color: $text-color !default;
|
|
|
|
$Table-onHover-boxShadow: $boxShadow !default;
|
|
|
|
|
|
|
|
$Table-onChecked-bg: #d9f3fb !default;
|
|
|
|
$Table-onChecked-borderColor: darken($Table-onChecked-bg, 10%) !default;
|
|
|
|
$Table-onChecked-color: darken($Table-onChecked-bg, 40%) !default;
|
|
|
|
|
|
|
|
$Table-onModified-bg: #e8f0fe !default;
|
|
|
|
$Table-onModified-color: #4285f4 !default;
|
|
|
|
$Table-onModified-borderColor: darken($Table-onModified-bg, 5%) !default;
|
|
|
|
|
|
|
|
$Table-onDragging-opacity: 0.1 !default;
|
|
|
|
$TableCell-searchBtn-width: px2rem(16px) !default;
|
|
|
|
|
|
|
|
$TableCell-filterBtn-width: px2rem(16px) !default;
|
|
|
|
$TableCell-filterPopOver-dropDownItem-height: px2rem(34px) !default;
|
|
|
|
$TableCell-filterPopOver-dropDownItem-padding: 0 px2rem(12px) !default;
|
|
|
|
|
|
|
|
$Table-heading-height: px2rem(40px) !default;
|
|
|
|
$Table-heading-bg: $white !default;
|
|
|
|
$Table--unsaved-heading-bg: #e8f0fe !default;
|
|
|
|
$Table--unsaved-heading-color: #4285f4 !default;
|
|
|
|
|
2019-08-13 14:55:57 +08:00
|
|
|
$Table-expandBtn-color: $info !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
$TableCell-sortBtn-width: px2rem(8px) !default;
|
2020-06-09 14:44:38 +08:00
|
|
|
$TableCell-sortBtn--default-opacity: 0 !default;
|
|
|
|
$TableCell-sortBtn--default-onActive-opacity: 1 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2020-07-31 17:43:44 +08:00
|
|
|
$TableCell-searchBtn--onActive-color: $primary !default;
|
|
|
|
$TableCell-filterBtn--onActive-color: $primary !default;
|
|
|
|
$TableCell-sortBtn--onActive-color: $primary !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// Cards
|
|
|
|
$Cards-fixedTop-boxShadow: $boxShadow !default;
|
|
|
|
$Cards-toolbar-paddingY: 0 !default;
|
|
|
|
$Cards-toolbar-paddingX: 0 !default;
|
|
|
|
$Cards--unsaved-heading-bg: #e8f0fe !default;
|
|
|
|
$Cards--unsaved-heading-color: #4285f4 !default;
|
|
|
|
$Cards-placeholder-height: px2rem(100px) !default;
|
|
|
|
$Card-bg: $white !default;
|
|
|
|
$Card-borderColor: $borderColor !default;
|
|
|
|
$Card-borderWidth: $borderWidth !default;
|
|
|
|
$Card-borderRadius: $borderRadius !default;
|
|
|
|
$Card-actions-borderColor: lighten($Card-borderColor, 5%) !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Card-actions-onHover-bg: darken($white, 5%) !default;
|
|
|
|
$Card-actions-onHover-color: darken($text-color, 5%) !default;
|
|
|
|
$Card-actions-onChecked-onHover-bg: darken(#d9f3fb, 5%) !default;
|
2020-07-02 16:19:25 +08:00
|
|
|
$Card-actions-fontSize: $fontSizeBase !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Card-onChecked-bg: #d9f3fb !default;
|
|
|
|
$Card-onChecked-borderColor: darken($Table-onChecked-bg, 10%) !default;
|
|
|
|
$Card-onChecked-color: darken($Table-onChecked-bg, 40%) !default;
|
|
|
|
|
|
|
|
$Card-onModified-bg: #e8f0fe !default;
|
|
|
|
$Card-onModified-color: #4285f4 !default;
|
|
|
|
$Card-onModified-borderColor: darken($Card-onModified-bg, 10%) !default;
|
|
|
|
|
|
|
|
$Card-onDragging-opacity: 0.1 !default;
|
|
|
|
|
|
|
|
// List
|
|
|
|
$List-bg: $white !default;
|
|
|
|
$List-borderColor: $borderColor !default;
|
|
|
|
$List-borderWidth: $borderWidth !default;
|
|
|
|
$List-borderRadius: $borderRadius !default;
|
|
|
|
$List-fixedTop-boxShadow: $boxShadow !default;
|
|
|
|
$List-toolbar-paddingY: $gap-sm !default;
|
|
|
|
$List-toolbar-paddingX: $gap-sm !default;
|
|
|
|
$List--unsaved-heading-bg: #e8f0fe !default;
|
|
|
|
$List--unsaved-heading-color: #4285f4 !default;
|
|
|
|
$List-placeholder-height: px2rem(30px) !default;
|
|
|
|
|
|
|
|
$ListItem-borderColor: lighten($List-borderColor, 5%) !default;
|
|
|
|
$ListItem-borderWidth: $List-borderWidth !default;
|
|
|
|
$ListItem-paddingX: $gap-base !default;
|
|
|
|
$ListItem-paddingY: $gap-sm !default;
|
|
|
|
$ListItem--strip-bg: #f6f8f8 !default;
|
|
|
|
$ListItem-onChecked-bg: #d9f3fb !default;
|
|
|
|
$ListItem-onChecked-borderColor: darken($ListItem-onChecked-bg, 10%) !default;
|
|
|
|
$ListItem-onChecked-color: darken($ListItem-onChecked-bg, 40%) !default;
|
|
|
|
$ListItem-onModified-bg: #e8f0fe !default;
|
|
|
|
$ListItem-onModified-color: #4285f4 !default;
|
|
|
|
$ListItem-onModified-borderColor: darken($ListItem-onModified-bg, 10%) !default;
|
|
|
|
$ListItem-onDragging-opacity: 0.1 !default;
|
|
|
|
|
|
|
|
// QuickEdit
|
2019-12-12 19:30:46 +08:00
|
|
|
$QuickEdit-iconColor: inherit !default;
|
|
|
|
$QuickEdit-onHover-iconColor: inherit !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$QuickEdit-onFocus-borderColor: $info !default;
|
|
|
|
$QuickEdit-onFocus-borderWidth: $borderWidth !default;
|
|
|
|
|
|
|
|
// Copyable
|
2020-06-08 15:49:45 +08:00
|
|
|
$Copyable-iconColor: $icon-color !default;
|
|
|
|
$Copyable-onHover-iconColor: $icon-onHover-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
// PopOverAble
|
2019-12-12 19:30:46 +08:00
|
|
|
$PopOverAble-iconColor: inherit !default;
|
|
|
|
$PopOverAble-onHover-iconColor: inherit !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-09-09 00:53:39 +08:00
|
|
|
// PopOver
|
|
|
|
$PopOver-bg: white !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// Remark
|
|
|
|
$Remark-width: 1rem !default;
|
|
|
|
$Remark-icon-fontSize: $fontSizeBase !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Remark-iconColor: $icon-color !default;
|
|
|
|
$Remark-onHover-iconColor: $icon-onHover-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Remark-bg: transparent !default;
|
|
|
|
$Remark-onHover-bg: transparent !default;
|
|
|
|
$Remark-borderWidth: 0 !default;
|
|
|
|
$Remark-borderColor: $borderColor !default;
|
|
|
|
$Remark-onHover-borderColor: $borderColor !default;
|
|
|
|
$Remark-marginLeft: $gap-sm !default;
|
|
|
|
|
2020-05-15 16:47:08 +08:00
|
|
|
// ResultBox
|
2020-05-14 20:47:05 +08:00
|
|
|
$ResultBox-value-bg: #f5f5f5 !default;
|
|
|
|
$ResultBox-value--onHover-bg: #ebebeb !default;
|
|
|
|
$ResultBox-value-color: #000 !default;
|
|
|
|
$ResultBox-value--onDisabled-color: #cccccc !default;
|
|
|
|
$ResultBox-icon-color: #999 !default;
|
|
|
|
$ResultBox-icon--onHover-color: #666666 !default;
|
|
|
|
$ResultBox-icon--onDisabled-color: #ebebeb !default;
|
|
|
|
|
2020-05-15 16:47:08 +08:00
|
|
|
// ListMenu
|
|
|
|
$ListMenu-bordrColor: $borderColor !default;
|
|
|
|
$listMenu--onActive-borderColor: $info !default;
|
|
|
|
$ListMenu-borderWidth: px2rem(1px) !default;
|
|
|
|
$ListMenu-borderRadius: px2rem(2px) !default;
|
|
|
|
$ListMenu-item-height: px2rem(34px) !default;
|
|
|
|
$ListMenu-divider-color: lighten($borderColor, 2.5%) !default;
|
|
|
|
$ListMenu-item-bg: $white !default;
|
|
|
|
$ListMenu-item-color: $text-color !default;
|
|
|
|
$ListMenu-item--onHover-color: $info !default;
|
|
|
|
$ListMenu-item--onHover-bg: rgba(0, 126, 255, 0.08) !default;
|
|
|
|
$ListMenu-item--onActive-color: $info !default;
|
|
|
|
$ListMenu-item--onActive-bg: transparent !default;
|
|
|
|
$ListMenu-item--onDisabled-color: $text--muted-color !default;
|
|
|
|
$ListMenu-item--onDisabled-bg: transparent !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// Form
|
|
|
|
$Form-fontSize: $fontSizeBase !default;
|
|
|
|
$Form-description-color: lighten($text-color, 10%) !default;
|
|
|
|
$Form-description-fontSize: $fontSizeSm !default;
|
|
|
|
$Form-item-gap: px2rem(15px) !default;
|
|
|
|
|
|
|
|
$Form--horizontal-gutterWidth: px2rem(20px) !default;
|
|
|
|
$Form--horizontal-columns: 12 !default;
|
|
|
|
|
|
|
|
$Form-group-gutterWidth: $Form--horizontal-gutterWidth !default;
|
|
|
|
$Form-group--lg-gutterWidth: px2rem(40px) !default;
|
|
|
|
$Form-group--md-gutterWidth: px2rem(30px) !default;
|
|
|
|
$Form-group--sm-gutterWidth: px2rem(20px) !default;
|
|
|
|
$Form-group--xs-gutterWidth: px2rem(10px) !default;
|
|
|
|
|
|
|
|
$Form-row-gutterWidth: px2rem(10px) !default;
|
|
|
|
|
2019-11-13 19:06:27 +08:00
|
|
|
$Form--horizontal-label-whiteSpace: 'normal' !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form--horizontal-label-align: right !default;
|
|
|
|
$Form--horizontal-label-widthXs: px2rem(60px) !default;
|
|
|
|
$Form--horizontal-label-widthSm: px2rem(90px) !default;
|
|
|
|
$Form--horizontal-label-widthBase: px2rem(120px) !default;
|
|
|
|
$Form--horizontal-label-widthMd: px2rem(160px) !default;
|
|
|
|
$Form--horizontal-label-widthLg: px2rem(200px) !default;
|
|
|
|
|
|
|
|
$Form-control-widthXs: px2rem(80px) !default;
|
|
|
|
$Form-control-widthSm: px2rem(160px) !default;
|
2020-04-03 10:24:54 +08:00
|
|
|
$Form-control-widthBase: px2rem(200px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-control-widthMd: px2rem(240px) !default;
|
|
|
|
$Form-control-widthLg: px2rem(320px) !default;
|
|
|
|
|
|
|
|
$Form-input-bg: $white !default;
|
|
|
|
$Form-input-color: $text-color !default;
|
|
|
|
$Form-input-onActive-color: $info !default;
|
|
|
|
$Form-input-borderRadius: $borderRadius !default;
|
|
|
|
$Form-input-borderColor: $borderColor !default;
|
|
|
|
$Form-input-borderWidth: px2rem(1px) !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Form-input-iconColor: $icon-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-input-onFocused-borderColor: $info !default;
|
|
|
|
$Form-input-onFocused-bg: $Form-input-bg !default;
|
|
|
|
$Form-input-onError-borderColor: $danger !default;
|
|
|
|
$Form-input-onError-bg: $Form-input-bg !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Form-input-onDisabled-borderColor: $Form-input-borderColor !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-input-onDisabled-bg: $gray200 !default;
|
|
|
|
$Form-input-height: px2rem(34px) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Form-input-placeholderColor: $text--muted-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-input-lineHeight: 20/14 !default;
|
|
|
|
$Form-input-fontSize: $Form-fontSize !default;
|
|
|
|
$Form-input-boxShadow: none !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Form-input-paddingY: (
|
|
|
|
$Form-input-height - $Form-input-lineHeight * $Form-input-fontSize -
|
|
|
|
px2rem(2px)
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-input-paddingX: px2rem(12px) !default;
|
|
|
|
$Form-input-marginBottom: px2rem(6px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Form-label-paddingTop: (
|
|
|
|
$Form-input-height - $Form-input-lineHeight * $Form-input-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Form-input-addOnBg: #edf1f2 !default;
|
|
|
|
$Form-input-addOnColor: $text-color !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Form-input-onFocus-addOnColor: $primary !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-input-addOnDividerBorderWidth: $borderWidth !default;
|
|
|
|
|
|
|
|
$Number-bg: $Form-input-bg !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Number-onDisabled-bg: $Form-input-bg !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Number-borderColor: $Form-input-borderColor !default;
|
|
|
|
$Number-borderWidth: $Form-input-borderWidth !default;
|
|
|
|
$Number-borderRadius: $Form-input-borderRadius !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Number-handler-mode: 'vertical' !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Number-handler-borderBottom: px2rem(1px) solid $Form-input-borderColor !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Number-handler-width: px2rem(20px) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Number-handler-color: $Form-input-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Number-handler-onDisabled-color: $text--muted-color !default;
|
|
|
|
$Number-handler-fontFamily: inherit !default;
|
|
|
|
$Number-handler-fontSize: $fontSizeBase !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Number-handler--up-content: '+' !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Number-handler--up-transform: none !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Number-handler--down-content: '-' !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Number-handler-bg: $white !default;
|
|
|
|
$Number-handler-onHover-bg: darken($Number-handler-bg, 5%) !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Number-handler-onHover-color: $text-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Number-handler-onActive-bg: $Number-handler-onHover-bg !default;
|
|
|
|
$Number-handler-onDisabled-bg: $Form-input-onDisabled-bg !default;
|
|
|
|
|
|
|
|
$Form-select-bg: $white !default;
|
|
|
|
$Form-select-onHover-bg: darken($white, 5%) !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Form-select-onHover-borderColor: $Form-input-borderColor !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-select-color: $text-color !default;
|
|
|
|
$Form-select-placeholderColor: $Form-input-placeholderColor !default;
|
|
|
|
$Form-select-paddingX: $Form-input-paddingX !default;
|
|
|
|
$Form-select-borderWidth: $Form-input-borderWidth !default;
|
|
|
|
$Form-select-borderColor: $Form-input-borderColor !default;
|
|
|
|
$Form-select-borderRadius: $Form-input-borderRadius !default;
|
|
|
|
$Form-select-onFocused-color: $Form-select-color !default;
|
|
|
|
$Form-select-onFocused-borderColor: $Form-input-onFocused-borderColor !default;
|
|
|
|
$Form-select-onError-borderColor: $Form-input-onError-borderColor !default;
|
|
|
|
$Form-selectOption-height: $Form-input-height !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Form-selectValue-color: $info !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Form-selectValue-bg: saturate(
|
|
|
|
lighten($Form-selectValue-color, 40%),
|
|
|
|
2.5%
|
|
|
|
) !default;
|
|
|
|
$Form-selectValue-borderColor: saturate(
|
|
|
|
lighten($Form-selectValue-color, 30%),
|
|
|
|
2.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-selectValue-fontSize: $fontSizeSm !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Form-select-caret-iconColor: $icon-color !default;
|
|
|
|
$Form-select-caret-onHover-iconColor: $icon-onHover-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-select-outer-borderWidth: px2rem(1px) !default;
|
|
|
|
$Form-select-outer-boxShadow: none !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Form-select-input-fontSize: $fontSizeSm !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-select-menu-height: $Form-input-height !default;
|
|
|
|
$Form-select-menu-bg: $white !default;
|
|
|
|
$Form-select-menu-color: $Form-select-color !default;
|
|
|
|
$Form-select-menu-onHover-color: $info !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Form-select-menu-onHover-bg: rgba(0, 126, 255, 0.08) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Form-select-menu-onActive-color: $info !default;
|
|
|
|
$Form-select-menu-onActive-bg: transparent !default;
|
|
|
|
$Form-select-menu-onDisabled-color: $text--muted-color !default;
|
|
|
|
$Form-select-menu-onDisabled-bg: transparent !default;
|
2019-05-19 11:45:40 +08:00
|
|
|
$Form-select-checkall-bottomBorder: #eceff8 !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Form-select-popoverGap: 0 !default;
|
|
|
|
$Form-select-search-height: $Form-select-menu-height !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// InputGroup
|
|
|
|
$InputGroup-height: $Form-input-height !default;
|
|
|
|
$InputGroup-addOn-bg: $Form-input-addOnBg !default;
|
|
|
|
$InputGroup-addOn-borderWidth: $Form-input-borderWidth !default;
|
|
|
|
$InputGroup-addOn-borderColor: $Form-input-borderColor !default;
|
|
|
|
$InputGroup-addOn-borderRadius: $Form-input-borderRadius !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$InputGroup-paddingY: (
|
|
|
|
$InputGroup-height - $Form-input-lineHeight * $Form-input-fontSize -
|
|
|
|
px2rem(2px)
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$InputGroup-paddingX: px2rem(10px) !default;
|
|
|
|
$InputGroup-addOn-onFocused-borderColor: $Form-input-onFocused-borderColor !default;
|
|
|
|
$InputGroup-select-borderWidth: $Form-select-borderWidth !default;
|
|
|
|
$InputGroup-select-borderColor: $Form-select-borderColor !default;
|
|
|
|
$InputGroup-select-borderRadius: $Form-select-borderRadius !default;
|
|
|
|
$InputGroup-select-bg: $white !default;
|
|
|
|
$InputGroup-select-onFocused-bg: $white !default;
|
|
|
|
$InputGroup-select-color: $Form-select-color !default;
|
|
|
|
$InputGroup-select-onFocused-color: $Form-select-onFocused-color !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$InputGroup-select-arrowColor: $icon-color !default;
|
|
|
|
$InputGroup-select-onFocused-arrowColor: $icon-onHover-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$InputGroup-button-borderWidth: $borderWidth !default;
|
|
|
|
$InputGroup-button-borderColor: $Form-input-borderColor !default;
|
|
|
|
$InputGroup-button-borderRadius: $borderRadius !default;
|
|
|
|
// $InputGroup-button-onFocused-borderColor: $Form-input-onFocused-borderColor !default;
|
|
|
|
|
|
|
|
// button
|
|
|
|
|
|
|
|
$Button-borderWidth: $Form-input-borderWidth !default;
|
|
|
|
$Button-fontWeight: $fontWeightNormal !default;
|
|
|
|
$Button-fontSize: $Form-input-fontSize !default;
|
|
|
|
$Button-height: $Form-input-height !default;
|
|
|
|
$Button-mimWidth: auto !default;
|
|
|
|
$Button-lineHeight: $Form-input-lineHeight !default;
|
|
|
|
$Button-paddingX: px2rem(12px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button-paddingY: (
|
|
|
|
$Button-height - $Button-borderWidth * 2 - $Button-lineHeight *
|
|
|
|
$Button-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Button--iconOnly-minWidthRate: 4 / 3 !default;
|
|
|
|
|
|
|
|
$Button--xs-fontSize: $fontSizeXs !default;
|
|
|
|
$Button--xs-height: px2rem(22px) !default;
|
|
|
|
$Button--xs-lineHeight: 18 / 11 !default;
|
|
|
|
$Button--xs-paddingX: px2rem(5px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--xs-paddingY: (
|
|
|
|
$Button--xs-height - $Button-borderWidth * 2 - $Button--xs-lineHeight *
|
|
|
|
$Button--xs-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Button--sm-fontSize: $fontSizeSm !default;
|
|
|
|
$Button--sm-height: px2rem(30px) !default;
|
|
|
|
$Button--sm-lineHeight: 18 / 12 !default;
|
|
|
|
$Button--sm-paddingX: px2rem(8px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--sm-paddingY: (
|
|
|
|
$Button--sm-height - $Button-borderWidth * 2 - $Button--sm-lineHeight *
|
|
|
|
$Button--sm-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Button--md-fontSize: $Button-fontSize !default;
|
|
|
|
$Button--md-height: $Button-height !default;
|
|
|
|
$Button--md-lineHeight: $Button-lineHeight !default;
|
|
|
|
$Button--md-paddingX: $Button-paddingX !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--md-paddingY: (
|
|
|
|
$Button--md-height - $Button-borderWidth * 2 - $Button--md-lineHeight *
|
|
|
|
$Button--md-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Button--lg-fontSize: $fontSizeLg !default;
|
|
|
|
$Button--lg-height: px2rem(46px) !default;
|
|
|
|
$Button--lg-lineHeight: 24 / 20 !default;
|
|
|
|
$Button--lg-paddingX: px2rem(16px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--lg-paddingY: (
|
|
|
|
$Button--lg-height - $Button-borderWidth * 2 - $Button--lg-lineHeight *
|
|
|
|
$Button--lg-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-10-21 19:03:56 +08:00
|
|
|
$Button-boxShadow: inset 0 1px 0 rgba($white, 0.15),
|
2020-02-26 16:33:42 +08:00
|
|
|
0 1px 1px rgba($black, 0.075) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button-onFocus-boxShadow: none !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Button-onActive-boxShadow: inset 0 3px 5px rgba($black, 0.125) !default;
|
|
|
|
$Button-onDisabled-opacity: 0.65 !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Button-onDisabled-borderColor: #dee2e6 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Button--link-onDisabled-color: $gray600 !default;
|
|
|
|
|
|
|
|
$Button-borderRadius: $borderRadius !default;
|
|
|
|
$Button--lg-borderRadius: $borderRadius !default;
|
|
|
|
$Button--sm-borderRadius: $borderRadius !default;
|
|
|
|
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
|
|
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Button--primary-bg: $primary !default;
|
|
|
|
$Button--primary-border: $Button--primary-bg !default;
|
|
|
|
$Button--primary-color: $white !default;
|
|
|
|
$Button--primary-onHover-bg: darken($Button--primary-bg, 7.5%) !default;
|
|
|
|
$Button--primary-onHover-border: darken($Button--primary-border, 10%) !default;
|
|
|
|
$Button--primary-onHover-color: $Button--primary-color !default;
|
|
|
|
$Button--primary-onActive-bg: darken($Button--primary-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--primary-onActive-border: darken(
|
|
|
|
$Button--primary-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button--primary-onActive-color: $Button--primary-color !default;
|
|
|
|
|
|
|
|
$Button--secondary-bg: $secondary !default;
|
|
|
|
$Button--secondary-border: $Button--secondary-bg !default;
|
|
|
|
$Button--secondary-color: $white !default;
|
|
|
|
$Button--secondary-onHover-bg: darken($Button--secondary-bg, 7.5%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--secondary-onHover-border: darken(
|
|
|
|
$Button--secondary-border,
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button--secondary-onHover-color: $Button--secondary-color !default;
|
|
|
|
$Button--secondary-onActive-bg: darken($Button--secondary-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--secondary-onActive-border: darken(
|
|
|
|
$Button--secondary-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button--secondary-onActive-color: $Button--secondary-color !default;
|
|
|
|
|
|
|
|
$Button--success-bg: $success !default;
|
|
|
|
$Button--success-border: $Button--success-bg !default;
|
|
|
|
$Button--success-color: $white !default;
|
|
|
|
$Button--success-onHover-bg: darken($Button--success-bg, 7.5%) !default;
|
|
|
|
$Button--success-onHover-border: darken($Button--success-border, 10%) !default;
|
|
|
|
$Button--success-onHover-color: $Button--success-color !default;
|
|
|
|
$Button--success-onActive-bg: darken($Button--success-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--success-onActive-border: darken(
|
|
|
|
$Button--success-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button--success-onActive-color: $Button--success-color !default;
|
|
|
|
|
|
|
|
$Button--info-bg: $info !default;
|
|
|
|
$Button--info-border: $Button--info-bg !default;
|
|
|
|
$Button--info-color: $white !default;
|
|
|
|
$Button--info-onHover-bg: darken($Button--info-bg, 7.5%) !default;
|
|
|
|
$Button--info-onHover-border: darken($Button--info-border, 10%) !default;
|
|
|
|
$Button--info-onHover-color: $Button--info-color !default;
|
|
|
|
$Button--info-onActive-bg: darken($Button--info-bg, 10%) !default;
|
|
|
|
$Button--info-onActive-border: darken($Button--info-border, 12.5%) !default;
|
|
|
|
$Button--info-onActive-color: $Button--info-color !default;
|
|
|
|
|
|
|
|
$Button--warning-bg: $warning !default;
|
|
|
|
$Button--warning-border: $Button--warning-bg !default;
|
|
|
|
$Button--warning-color: $white !default;
|
|
|
|
$Button--warning-onHover-bg: darken($Button--warning-bg, 7.5%) !default;
|
|
|
|
$Button--warning-onHover-border: darken($Button--warning-border, 10%) !default;
|
|
|
|
$Button--warning-onHover-color: $Button--warning-color !default;
|
|
|
|
$Button--warning-onActive-bg: darken($Button--warning-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--warning-onActive-border: darken(
|
|
|
|
$Button--warning-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button--warning-onActive-color: $Button--warning-color !default;
|
|
|
|
|
|
|
|
$Button--danger-bg: $danger !default;
|
|
|
|
$Button--danger-border: $Button--danger-bg !default;
|
|
|
|
$Button--danger-color: $white !default;
|
|
|
|
$Button--danger-onHover-bg: darken($Button--danger-bg, 7.5%) !default;
|
|
|
|
$Button--danger-onHover-border: darken($Button--danger-border, 10%) !default;
|
|
|
|
$Button--danger-onHover-color: $Button--danger-color !default;
|
|
|
|
$Button--danger-onActive-bg: darken($Button--danger-bg, 10%) !default;
|
|
|
|
$Button--danger-onActive-border: darken($Button--danger-border, 12.5%) !default;
|
|
|
|
$Button--danger-onActive-color: $Button--danger-color !default;
|
|
|
|
|
|
|
|
$Button--light-bg: $light !default;
|
|
|
|
$Button--light-border: $borderColor !default;
|
|
|
|
$Button--light-color: $text-color !default;
|
|
|
|
$Button--light-onHover-bg: darken($Button--light-bg, 7.5%) !default;
|
|
|
|
$Button--light-onHover-border: darken($Button--light-border, 10%) !default;
|
|
|
|
$Button--light-onHover-color: $Button--light-color !default;
|
|
|
|
$Button--light-onActive-bg: darken($Button--light-bg, 10%) !default;
|
|
|
|
$Button--light-onActive-border: darken($Button--light-border, 12.5%) !default;
|
|
|
|
$Button--light-onActive-color: $Button--light-color !default;
|
|
|
|
|
|
|
|
$Button--dark-bg: $dark !default;
|
|
|
|
$Button--dark-border: $Button--dark-bg !default;
|
|
|
|
$Button--dark-color: $white !default;
|
|
|
|
$Button--dark-onHover-bg: darken($Button--dark-bg, 7.5%) !default;
|
|
|
|
$Button--dark-onHover-border: darken($Button--dark-border, 10%) !default;
|
|
|
|
$Button--dark-onHover-color: $Button--dark-color !default;
|
|
|
|
$Button--dark-onActive-bg: darken($Button--dark-bg, 10%) !default;
|
|
|
|
$Button--dark-onActive-border: darken($Button--dark-border, 12.5%) !default;
|
|
|
|
$Button--dark-onActive-color: $Button--dark-color !default;
|
|
|
|
|
|
|
|
$Button--default-bg: $white !default;
|
|
|
|
$Button--default-border: $borderColor !default;
|
|
|
|
$Button--default-color: $text-color !default;
|
|
|
|
$Button--default-onHover-bg: darken($Button--default-bg, 7.5%) !default;
|
|
|
|
$Button--default-onHover-border: darken($Button--default-border, 10%) !default;
|
|
|
|
$Button--default-onHover-color: $Button--default-color !default;
|
|
|
|
$Button--default-onActive-bg: darken($Button--default-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Button--default-onActive-border: darken(
|
|
|
|
$Button--default-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Button--default-onActive-color: $Button--default-color !default;
|
|
|
|
|
|
|
|
$Button--link-color: $text-color !default;
|
|
|
|
$Button--link-onHover-color: $text--loud-color !default;
|
|
|
|
|
|
|
|
$DropDown-caret-marginLeft: $gap-sm;
|
|
|
|
$DropDown-menu-bg: $white !default;
|
|
|
|
$DropDown-menu-boxShadow: $boxShadow !default;
|
|
|
|
$DropDown-menu-borderColor: $borderColor !default;
|
|
|
|
$DropDown-menu-borderWidth: $borderWidth !default;
|
|
|
|
$DropDown-menu-borderRadius: $borderRadius !default;
|
|
|
|
$DropDown-menu-height: px2rem(34px) !default;
|
|
|
|
$DropDown-menu-minWidth: px2rem(160px) !default;
|
|
|
|
$DropDown-menu-paddingY: $gap-xs !default;
|
|
|
|
$DropDown-menu-paddingX: 0 !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$DropDown-menuItem-paddingY: (
|
|
|
|
$DropDown-menu-height - $fontSizeBase * $lineHeightBase
|
|
|
|
) / 2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$DropDown-menuItem-paddingX: $gap-sm !default;
|
|
|
|
$DropDown-menuItem-onHover-color: inherit !default;
|
2020-06-16 14:30:25 +08:00
|
|
|
$DropDown-menuItem-onHover-bg: $ListMenu-item--onHover-bg !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Checks
|
|
|
|
$Checkbox-gap: $gap-sm !default;
|
|
|
|
$Checkbox-size: px2rem(20px) !default;
|
|
|
|
$Checkbox-inner-size: $Checkbox-size / 2 !default;
|
|
|
|
$Checkbox--full-inner-size: px2rem(12px) !default;
|
|
|
|
$Checkbox-color: $Form-input-borderColor !default;
|
|
|
|
$Checkbox-onHover-color: $info !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
$Checkbox--sm-size: px2rem(16px) !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Checkbox--sm-inner-size: $Checkbox--sm-size/2 !default;
|
|
|
|
$Checkbox--sm--full-inner-size: px2rem(10px) !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Checkbox-gb: #fff !default;
|
|
|
|
$Checkbox-borderRadius: $borderRadius !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Radio
|
|
|
|
$Radio-size: $Checkbox-size !default;
|
|
|
|
$Radio-inner-size: $Radio-size / 2 !default;
|
|
|
|
$Radio-color: $Checkbox-color !default;
|
|
|
|
$Radio-onHover-color: $Checkbox-onHover-color !default;
|
|
|
|
$Radio--sm-size: $Checkbox--sm-size !default;
|
|
|
|
|
|
|
|
// switch
|
|
|
|
$Switch-gap: $gap-sm !default;
|
|
|
|
$Switch-width: px2rem(50px) !default;
|
|
|
|
$Switch-height: px2rem(22px) !default;
|
2019-07-17 19:47:14 +08:00
|
|
|
$Switch-bgColor: $gray600 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Switch-borderColor: darken($Switch-bgColor, 10%) !default;
|
|
|
|
$Switch-valueColor: $white !default;
|
|
|
|
$Switch-onActive-bgColor: $info !default;
|
|
|
|
$Switch-onDisabled-bgColor: #ccc !default;
|
|
|
|
$Switch-onDisabled-color: #fff !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Switch-onDisabled-circle-BackgroundColor: $white !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2019-09-09 00:53:39 +08:00
|
|
|
// Fieldset
|
|
|
|
$Fieldset-legend-bgColor: $white !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// color Picker
|
|
|
|
$ColorPicker-color: $Form-input-color !default;
|
|
|
|
$ColorPicker-bg: $white !default;
|
|
|
|
$ColorPicker-onHover-bg: darken($ColorPicker-bg, 5%) !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$ColorPicker-onHover-borderColor: $borderColor !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$ColorPicker-onDisabled-bg: $gray200 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$ColorPicker-onDisabled-color: $text--muted-color !default;
|
|
|
|
$ColorPicker-borderWidth: $Form-input-borderWidth !default;
|
|
|
|
$ColorPicker-borderColor: $Form-input-borderColor !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$ColorPicker-borderRadius: $Form-input-borderRadius !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$ColorPicker-height: $Form-input-height !default;
|
|
|
|
$ColorPicker-lineHeight: $Form-input-lineHeight !default;
|
|
|
|
$ColorPicker-fontSize: $Form-input-fontSize !default;
|
|
|
|
$ColorPicker-paddingX: px2rem(12px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$ColorPicker-paddingY: (
|
|
|
|
$ColorPicker-height - $ColorPicker-lineHeight * $ColorPicker-fontSize
|
|
|
|
)/2 - $ColorPicker-borderWidth !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$ColorPicker-placeholderColor: $Form-input-placeholderColor !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$ColorPicker-onFocused-borderColor: $Form-input-onFocused-borderColor !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// datepicker
|
|
|
|
$DatePicker-color: $Form-input-color !default;
|
|
|
|
$DatePicker-bg: $white !default;
|
2020-08-18 20:26:04 +08:00
|
|
|
$DatePicker-onHover-borderColor: $Form-input-onFocused-borderColor !default;
|
|
|
|
$DatePicker-onHover-bg: $DatePicker-bg !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$DatePicker-borderWidth: $Form-input-borderWidth !default;
|
|
|
|
$DatePicker-borderColor: $Form-input-borderColor !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$DatePicker-borderRadius: $Form-input-borderRadius !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$DatePicker-height: $Form-input-height !default;
|
|
|
|
$DatePicker-lineHeight: $Form-input-lineHeight !default;
|
|
|
|
$DatePicker-fontSize: $Form-input-fontSize !default;
|
|
|
|
$DatePicker-paddingX: px2rem(12px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$DatePicker-paddingY: (
|
|
|
|
$DatePicker-height - $DatePicker-lineHeight * $DatePicker-fontSize
|
|
|
|
)/2 - $DatePicker-borderWidth !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$DatePicker-placeholderColor: $Form-input-placeholderColor !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$DatePicker-iconColor: $icon-color !default;
|
|
|
|
$DatePicker-onHover-iconColor: $icon-onHover-color !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$DatePicker-onFocused-borderColor: $Form-input-onFocused-borderColor !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$DatePicker-header-select-borderColor: #fff !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Calendar-fontSize: $fontSizeBase !default;
|
|
|
|
|
|
|
|
$Calendar-input-color: $info !default;
|
|
|
|
$Calendar-input-fontSize: $fontSizeBase !default;
|
|
|
|
$Calendar-input-borderColor: $borderColor !default;
|
|
|
|
$Calendar-input-onFocused-borderColor: $info !default;
|
|
|
|
$Calendar-input-borderRadius: $borderRadius !default;
|
|
|
|
$Calendar-input-height: px2rem(30px) !default;
|
|
|
|
$Calendar-input-lineHeight: $lineHeightBase;
|
|
|
|
$Calendar-input-paddingX: px2rem(10px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Calendar-input-paddingY: (
|
|
|
|
$Calendar-input-height - $Calendar-input-lineHeight *
|
|
|
|
$Calendar-input-fontSize
|
|
|
|
) / 2;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Calendar-btn-fontSize: $fontSizeSm !default;
|
|
|
|
$Calendar-btn-lineHeight: $lineHeightBase !default;
|
|
|
|
$Calendar-btn-height: px2rem(30px) !default;
|
|
|
|
$Calendar-btn-paddingX: px2rem(10px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Calendar-btn-paddingY: (
|
|
|
|
$Calendar-btn-height - $Calendar-btn-lineHeight * $Calendar-btn-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Calendar-btn-bg: $info !default;
|
|
|
|
$Calendar-btn-border: $Calendar-btn-bg !default;
|
|
|
|
$Calendar-btn-borderRadius: $Button-borderRadius !default;
|
|
|
|
$Calendar-btn-color: $white !default;
|
|
|
|
$Calendar-btn-onHover-bg: darken($Calendar-btn-bg, 7.5%) !default;
|
|
|
|
$Calendar-btn-onHover-border: darken($Calendar-btn-border, 10%) !default;
|
|
|
|
$Calendar-btn-onHover-color: $Calendar-btn-color !default;
|
|
|
|
$Calendar-btn-onActive-bg: darken($Calendar-btn-bg, 10%) !default;
|
|
|
|
$Calendar-btn-onActive-border: darken($Calendar-btn-border, 12.5%) !default;
|
|
|
|
$Calendar-btn-onActive-color: $Calendar-btn-color !default;
|
|
|
|
|
|
|
|
$Calendar-btnCancel-bg: $light !default;
|
|
|
|
$Calendar-btnCancel-border: $Calendar-btnCancel-bg !default;
|
|
|
|
$Calendar-btnCancel-borderRadius: $Button-borderRadius !default;
|
|
|
|
$Calendar-btnCancel-color: $text-color !default;
|
|
|
|
$Calendar-btnCancel-onHover-bg: darken($Calendar-btnCancel-bg, 7.5%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Calendar-btnCancel-onHover-border: darken(
|
|
|
|
$Calendar-btnCancel-border,
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Calendar-btnCancel-onHover-color: $Calendar-btnCancel-color !default;
|
|
|
|
$Calendar-btnCancel-onActive-bg: darken($Calendar-btnCancel-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Calendar-btnCancel-onActive-border: darken(
|
|
|
|
$Calendar-btnCancel-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Calendar-btnCancel-onActive-color: $Calendar-btnCancel-color !default;
|
|
|
|
|
|
|
|
$Calendar-color: $text-color !default;
|
|
|
|
$Calendar-wLabel-color: #999 !default;
|
|
|
|
$Calendar-cell-bg: $white !default;
|
|
|
|
$Calendar-cell-onHover-bg: darken($Calendar-cell-bg, 7%) !default;
|
|
|
|
$Calendar-cell-onActive-bg: $info !default;
|
2019-12-18 18:57:07 +08:00
|
|
|
$Calendar-cell-onBetween-bg: rgba($info, 0.1) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Calendar-cell-onDisabled-bg: $light !default;
|
|
|
|
|
2019-12-18 18:57:07 +08:00
|
|
|
$Calendar-shortcuts-bg: transparent;
|
|
|
|
$Calendar-shortcuts-height: px2rem(30px);
|
|
|
|
|
|
|
|
$Calendar-shortcut-color: $info !default;
|
|
|
|
$Calendar-shortcut-decoration: none !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Calendar-shortcut-onHover-color: darken(
|
|
|
|
$Calendar-shortcut-color,
|
|
|
|
15%
|
|
|
|
) !default;
|
2019-12-18 18:57:07 +08:00
|
|
|
$Calendar-shortcut-onHover-decoration: none !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// List Control
|
|
|
|
$ListControl-fontSize: $Form-fontSize !default;
|
|
|
|
$ListControl-gutterWidth: px2rem(10px) !default;
|
|
|
|
|
|
|
|
$ListControl-item-transition: none !default;
|
|
|
|
|
|
|
|
$ListControl-item-borderWidth: $borderWidth !default;
|
|
|
|
$ListControl-item-borderColor: $borderColor !default;
|
|
|
|
$ListControl-item-bg: $white !default;
|
|
|
|
$ListControl-item-paddingX: px2rem(12px) !default;
|
|
|
|
$ListControl-item-paddingY: px2rem(6px) !default;
|
|
|
|
$ListControl-item-color: $text-color !default;
|
|
|
|
|
2020-02-26 16:33:42 +08:00
|
|
|
$ListControl-item-onHover-borderColor: darken(
|
|
|
|
$ListControl-item-borderColor,
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$ListControl-item-onHover-bg: darken($ListControl-item-bg, 7.5%) !default;
|
|
|
|
$ListControl-item-onHover-color: $ListControl-item-color !default;
|
|
|
|
|
|
|
|
$ListControl-item-onActive-bg: $primary !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$ListControl-item-onActive-borderColor: darken(
|
|
|
|
$ListControl-item-onActive-bg,
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$ListControl-item-onActive-color: $white !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$ListControl-item-onActive-before-bg: $white !default;
|
|
|
|
$ListControl-item-onActive-after-borderColor: $primary !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$ListControl-item-onDisabled-opacity: 0.6 !default;
|
|
|
|
$ListControl-item-onDisabled-color: $ListControl-item-color !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$ListControl-item-onDisabled-borderColor: lighten(
|
|
|
|
$ListControl-item-borderColor,
|
|
|
|
5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$ListControl-item-onDisabled-bg: $ListControl-item-bg !default;
|
|
|
|
|
|
|
|
// Combo
|
|
|
|
$Combo-toolbarBtn-lineHeight: 1 !default;
|
|
|
|
$Combo-toolbarBtn-height: px2rem(20px) !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Combo-toolbarBtn-color: $icon-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Combo-toolbarBtn-paddingX: px2rem(5px) !default;
|
|
|
|
$Combo-toolbarBtn-paddingY: px2rem(2px) !default;
|
|
|
|
|
|
|
|
$Combo-items-marginBottom: $gap-sm !default;
|
|
|
|
$Combo-addBtn-bg: $Button--info-bg !default;
|
|
|
|
$Combo-addBtn-border: $Button--info-border !default;
|
|
|
|
$Combo-addBtn-color: $Button--info-color !default;
|
|
|
|
$Combo-addBtn-onHover-bg: darken($Combo-addBtn-bg, 7.5%) !default;
|
|
|
|
$Combo-addBtn-onHover-border: darken($Combo-addBtn-border, 10%) !default;
|
|
|
|
$Combo-addBtn-onHover-color: $Combo-addBtn-color !default;
|
|
|
|
$Combo-addBtn-onActive-bg: darken($Combo-addBtn-bg, 10%) !default;
|
|
|
|
$Combo-addBtn-onActive-border: darken($Combo-addBtn-border, 12.5%) !default;
|
|
|
|
$Combo-addBtn-onActive-color: $Combo-addBtn-color !default;
|
|
|
|
|
|
|
|
$Combo-addBtn-fontSize: $Button--sm-fontSize !default;
|
|
|
|
$Combo-addBtn-borderRadius: $Button-borderRadius;
|
|
|
|
$Combo-addBtn-height: px2rem(26px) !default;
|
|
|
|
$Combo-addBtn-lineHeight: $Button--sm-lineHeight !default;
|
|
|
|
$Combo-addBtn-paddingX: $Button--sm-paddingX !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Combo-addBtn-paddingY: (
|
|
|
|
$Combo-addBtn-height - $Button-borderWidth * 2 - $Combo-addBtn-lineHeight *
|
|
|
|
$Combo-addBtn-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Combo--vertical-item-gap: px2rem(5px);
|
|
|
|
$Combo--vertical-item-borderColor: $borderColor !default;
|
|
|
|
$Combo--vertical-item-onHover-borderColor: $info !default;
|
|
|
|
$Combo--vertical-item-borderWidth: $borderWidth !default;
|
|
|
|
$Combo--vertical-item-borderRadius: $borderRadius !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Combo--vertical-item-paddingX: px2rem(10px) !default;
|
|
|
|
$Combo--vertical-item-paddingY: px2rem(10px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
$Combo--vertical-itemToolbar-height: px2rem(25px) !default;
|
|
|
|
$Combo--vertical-itemToolbar-bg: $info !default;
|
|
|
|
$Combo--vertical-itemToolbar-color: darken($white, 5%) !default;
|
|
|
|
$Combo--vertical-itemToolbar-onHover-color: $white !default;
|
|
|
|
$Combo--vertical-itemToolbar-borderWidth: $borderWidth !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$Combo--vertical-itemToolbar-borderColor: darken(
|
|
|
|
$Combo--vertical-itemToolbar-bg,
|
|
|
|
5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Combo--vertical-itemToolbar-borderRadius: px2rem(3px) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Combo--vertical-itemToolbar-transion: all 0.25s ease-in-out !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Combo--vertical-itemToolbar-positionTop: -$Combo--vertical-itemToolbar-height !default;
|
|
|
|
$Combo--vertical-itemToolbar-positionRight: px2rem(5px) !default;
|
|
|
|
|
|
|
|
$Combo--horizontal-item-gap: px2rem(5px);
|
2020-06-11 11:34:18 +08:00
|
|
|
$Combo--horizontal-dragger-top: $Form-label-paddingTop !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Sub Form
|
|
|
|
$SubForm--addBtn-bg: $Button--info-bg !default;
|
|
|
|
$SubForm--addBtn-border: $Button--info-border !default;
|
|
|
|
$SubForm--addBtn-color: $Button--info-color !default;
|
|
|
|
$SubForm--addBtn-onHover-bg: darken($SubForm--addBtn-bg, 7.5%) !default;
|
|
|
|
$SubForm--addBtn-onHover-border: darken($SubForm--addBtn-border, 10%) !default;
|
|
|
|
$SubForm--addBtn-onHover-color: $SubForm--addBtn-color !default;
|
|
|
|
$SubForm--addBtn-onActive-bg: darken($SubForm--addBtn-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$SubForm--addBtn-onActive-border: darken(
|
|
|
|
$SubForm--addBtn-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$SubForm--addBtn-onActive-color: $SubForm--addBtn-color !default;
|
|
|
|
|
|
|
|
$SubForm--addBtn-fontSize: $Button--sm-fontSize !default;
|
|
|
|
$SubForm--addBtn-borderRadius: $Button-borderRadius;
|
|
|
|
$SubForm--addBtn-height: $Button--sm-height !default;
|
|
|
|
$SubForm--addBtn-lineHeight: $Button--sm-lineHeight !default;
|
|
|
|
$SubForm--addBtn-paddingX: $Button--sm-paddingX !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$SubForm--addBtn-paddingY: (
|
|
|
|
$SubForm--addBtn-height - $Button-borderWidth * 2 -
|
|
|
|
$SubForm--addBtn-lineHeight * $SubForm--addBtn-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// InputRange
|
|
|
|
$InputRange-fontFamily: $fontFamilyBase !default;
|
|
|
|
$InputRange-primaryColor: $info !default;
|
|
|
|
$InputRange-neutralColor: #aaaaaa !default;
|
|
|
|
$InputRange-neutralLightColor: #eeeeee !default;
|
|
|
|
$InputRange-onDisabled-color: #cccccc !default;
|
|
|
|
|
|
|
|
// input-range-slider
|
|
|
|
$InputRange-slider-bg: $InputRange-primaryColor !default;
|
|
|
|
$InputRange-slider-border: px2rem(1px) solid $InputRange-primaryColor !default;
|
|
|
|
$InputRange-slider-onFocus-borderRadius: $borderRadiusMd !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$InputRange-slider-onFocus-boxShadow: 0 0 0
|
|
|
|
$InputRange-slider-onFocus-borderRadius
|
|
|
|
transparentize($InputRange-slider-bg, 0.8) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$InputRange-slider-height: px2rem(24px) !default;
|
|
|
|
$InputRange-slider-width: px2rem(18px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$InputRange-slider-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$InputRange-sliderContainer-transition: left 0.3s ease-out !default;
|
|
|
|
$InputRange-slider-onActive-transform: scale(1.3) !default;
|
|
|
|
$InputRange-slider-onDisabled-bg: $InputRange-onDisabled-color !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$InputRange-slider-onDisabled-border: px2rem(1px) solid
|
|
|
|
$InputRange-onDisabled-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// input-range-label
|
|
|
|
$InputRange-label-color: $InputRange-neutralColor !default;
|
|
|
|
$InputRange-label-fontSize: 0.8rem !default;
|
|
|
|
$InputRange-label-positionBottom: -1.4rem !default;
|
|
|
|
$InputRange-label--value-display: block !default;
|
|
|
|
$InputRange-label--value-positionTop: px2rem(-40px) !default;
|
|
|
|
|
|
|
|
// input-range-track
|
|
|
|
$InputRange-track-bg: $InputRange-neutralLightColor !default;
|
|
|
|
$InputRange-track-height: px2rem(12px) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$InputRange-track-transition: left 0.3s ease-out, width 0.3s ease-out !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$InputRange-track-onActive-bg: $InputRange-primaryColor !default;
|
|
|
|
$InputRange-track-onDisabled-bg: $InputRange-neutralLightColor !default;
|
|
|
|
|
2019-10-21 19:03:56 +08:00
|
|
|
// ImageControl
|
|
|
|
$ImageControl-addBtn-bg: $Button--default-bg !default;
|
|
|
|
$ImageControl-addBtn-border: $Button--default-border !default;
|
|
|
|
$ImageControl-addBtn-color: $Button--default-color !default;
|
|
|
|
$ImageControl-addBtn-onHover-bg: darken($ImageControl-addBtn-bg, 7.5%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$ImageControl-addBtn-onHover-border: darken(
|
|
|
|
$ImageControl-addBtn-border,
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-10-21 19:03:56 +08:00
|
|
|
$ImageControl-addBtn-onHover-color: $Button--default-color !default;
|
|
|
|
$ImageControl-addBtn-onActive-bg: darken($ImageControl-addBtn-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$ImageControl-addBtn-onActive-border: darken(
|
|
|
|
$ImageControl-addBtn-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-10-21 19:03:56 +08:00
|
|
|
$ImageControl-addBtn-onActive-color: $ImageControl-addBtn-color !default;
|
|
|
|
$ImageControl-addBtn-onDisabled-bg: $Form-input-onDisabled-bg !default;
|
|
|
|
$ImageControl-addBtn-onDisabled-border: $Form-input-onDisabled-borderColor !default;
|
|
|
|
$ImageControl-addBtn-onDisabled-color: $text--muted-color !default;
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
// Tag
|
|
|
|
$TagControl-sugTip-color: $info !default;
|
|
|
|
|
|
|
|
$TagControl-sugBtn-bg: $Button--default-bg !default;
|
|
|
|
$TagControl-sugBtn-border: $Button--default-border !default;
|
|
|
|
$TagControl-sugBtn-color: $Button--default-color !default;
|
|
|
|
$TagControl-sugBtn-onHover-bg: darken($TagControl-sugBtn-bg, 7.5%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$TagControl-sugBtn-onHover-border: darken(
|
|
|
|
$TagControl-sugBtn-border,
|
|
|
|
10%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$TagControl-sugBtn-onHover-color: $Button--default-color !default;
|
|
|
|
$TagControl-sugBtn-onActive-bg: darken($TagControl-sugBtn-bg, 10%) !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$TagControl-sugBtn-onActive-border: darken(
|
|
|
|
$TagControl-sugBtn-border,
|
|
|
|
12.5%
|
|
|
|
) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$TagControl-sugBtn-onActive-color: $TagControl-sugBtn-color !default;
|
|
|
|
|
|
|
|
$TagControl-sugBtn-borderWidth: $Button-borderWidth !default;
|
|
|
|
$TagControl-sugBtn-fontSize: $Button--sm-fontSize !default;
|
|
|
|
$TagControl-sugBtn-borderRadius: $Button-borderRadius !default;
|
|
|
|
$TagControl-sugBtn-height: $Button--sm-height !default;
|
|
|
|
$TagControl-sugBtn-lineHeight: $Button--sm-lineHeight !default;
|
|
|
|
$TagControl-sugBtn-paddingX: $Button--sm-paddingX !default;
|
2020-02-26 16:33:42 +08:00
|
|
|
$TagControl-sugBtn-paddingY: (
|
|
|
|
$TagControl-sugBtn-height - $Button-borderWidth * 2 -
|
|
|
|
$TagControl-sugBtn-lineHeight * $TagControl-sugBtn-fontSize
|
|
|
|
)/2 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Wizard
|
|
|
|
$Wizard-steps-bg: $gray100 !default;
|
|
|
|
$Wizard-steps-borderWidth: px2rem(1px) !default;
|
|
|
|
$Wizard-steps-textAlign: left !default;
|
|
|
|
$Wizard-steps-ulDisplay: block !default;
|
|
|
|
$Wizard-steps-height: px2rem(40px) !default;
|
|
|
|
$Wizard-steps-padding: 0 !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Wizard-steps-liAfterContent: '' !default;
|
2020-06-09 14:44:38 +08:00
|
|
|
$Wizard-steps-liVender: '' !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Wizard-steps-liAfterBorder: px2rem(20px) solid transparent !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Wizard-steps-li-onActive-color: $info !default;
|
2019-09-09 00:53:39 +08:00
|
|
|
$Wizard-steps-li-onActive-bg: #fff !default;
|
|
|
|
$Wizard-steps-li-onActive-arrow-bg: #fff !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Wizard-stepsContent-padding: px2rem(15px) !default;
|
|
|
|
$Wizard-badge-bg: $gray400 !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Wizard-badge-color: $white !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Wizard-badge-size: px2rem(20px) !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Wizard-badge-border: 0 !default;
|
|
|
|
$Wizard-badge-onActive-backgroundColor: $info !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Wizard-badge-borderRadius: px2rem(10px) !default;
|
|
|
|
$Wizard-badge-fontSize: $fontSizeSm !default;
|
|
|
|
$Wizard-badge-marginRight: px2rem(4px) !default;
|
|
|
|
$Wizard-steps-bg--isComplete: #f1f5f9 !default;
|
|
|
|
|
|
|
|
// Page
|
|
|
|
$Page-aside-width: px2rem(200px) !default;
|
2020-07-30 11:45:53 +08:00
|
|
|
$Page-aside-maxWidth: px2rem(300px) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Page-aside-bg: desaturate(darken($light, 3%), 2.5%) !default;
|
|
|
|
$Page-content-paddingY: 0 !default;
|
|
|
|
$Page-content-paddingX: 0 !default;
|
|
|
|
$Page-main-bg: transparent !default;
|
|
|
|
$Page-header-paddingY: $gap-base !default;
|
|
|
|
$Page-header-paddingX: $gap-base !default;
|
2019-09-10 19:47:48 +08:00
|
|
|
$Page-body-padding: $gap-base !default;
|
|
|
|
$Page-title-lineHeight: 1.1 !default;
|
|
|
|
$Page-title-fontSize: $fontSizeMd !default;
|
|
|
|
$Page-title-fontWeight: $fontWeightNormal !default;
|
|
|
|
$Page-title-color: $text--loud-color !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Panel
|
|
|
|
$Panel-borderRadius: $borderRadius !default;
|
|
|
|
$Panel-marginBottom: px2rem(20px) !default;
|
|
|
|
$Panel-bg: $white !default;
|
|
|
|
$Panel-border: $borderWidth solid transparent !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Panel-boxShadow: 0 px2rem(1px) px2rem(1px) rgba(0, 0, 0, 0.05) !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Panel--default-bg: #f6f8f8 !default;
|
|
|
|
$Panel--default-color: $text-color !default;
|
|
|
|
$Panel--default-badgeColor: #f5f5f5 !default;
|
|
|
|
$Panel--default-badgeBg: #333 !default;
|
|
|
|
$Panel--default-headingBorderColor: $borderColor !default;
|
|
|
|
$Panel-headingPadding: px2rem(10px) px2rem(15px) !default;
|
|
|
|
$Panel-headingBorderBottom: $borderWidth solid transparent !default;
|
2019-07-14 00:27:01 +08:00
|
|
|
$Panel-headingBorderRadius: $borderRadius $borderRadius 0 0 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Panel-titleMarginTop: 0 !default;
|
|
|
|
$Panel-titleMarginBottom: 0 !default;
|
|
|
|
$Panel-titleFontSize: $fontSizeMd !default;
|
|
|
|
$Panel-titleColor: inherit !default;
|
|
|
|
$Panel-bodyPadding: px2rem(15px) !default;
|
|
|
|
$Panel-footerBorderColor: lighten($borderColor, 5%) !default;
|
|
|
|
$Panel-footerBorderRadius: 0 0 px2rem(2px) px2rem(2px) !default;
|
|
|
|
$Panel-footerBg: $white !default;
|
|
|
|
$Panel-footerPadding: px2rem(10px) px2rem(15px) !default;
|
|
|
|
$Panel-borderWidth: px2rem(1px) !default;
|
|
|
|
$Panel-footerButtomMarginLeft: $gap-sm !default;
|
|
|
|
$Panel-btnToolbarTextAlign: right !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Panel-fixedBottom-boxShadow: 0 -0.5rem 1rem rgba($black, 0.15) !default;
|
2019-09-04 15:44:43 +08:00
|
|
|
$Panel-fixedBottom-borderTop: none !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Pagination
|
|
|
|
$Pagination-height: px2rem(30px) !default;
|
|
|
|
$Pagination-minWidth: px2rem(30px) !default;
|
|
|
|
$Pagination-padding: 0 px2rem(8px) !default;
|
|
|
|
$Pagination-fontSize: $fontSizeBase !default;
|
2019-08-12 21:14:33 +08:00
|
|
|
$Pagination-onActive-backgroundColor: $primary !default;
|
|
|
|
$Pagination-onActive-color: $white !default;
|
|
|
|
$Pagination-onActive-border: 0 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Transfer-select
|
2020-05-27 13:52:25 +08:00
|
|
|
$Transfer-title-bg: #f6f8f8 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// Tree
|
2019-09-09 00:53:39 +08:00
|
|
|
$TreeSelect-popover-bg: #fff !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
$Tree-indent: px2rem(20px) !default;
|
2020-06-11 13:37:17 +08:00
|
|
|
$Tree-itemArrowWidth: px2rem(10px) !default;
|
2019-11-09 17:04:48 +08:00
|
|
|
$Tree-itemLabel--onChecked-color: $Form-selectValue-color !default;
|
|
|
|
$Tree-itemHeight: px2rem(30px) !default;
|
|
|
|
$Tree-item-onHover-bg: rgba(0, 126, 255, 0.08) !default;
|
|
|
|
$Tree-inputHeight: $Form-input-height * 0.85 !default;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
|
|
// IconPicker
|
2019-05-15 16:10:20 +08:00
|
|
|
$IconPicker-tabs-bg: #f0f3f4 !default;
|
2020-03-02 15:40:05 +08:00
|
|
|
$IconPicker-tab-padding: 0 px2rem(10px) !default;
|
2019-05-05 10:49:20 +08:00
|
|
|
$IconPicker-tab-height: px2rem(30px) !default;
|
|
|
|
$IconPicker-tab-lineHeight: px2rem(30px) !default;
|
|
|
|
$IconPicker-tab-onActive-bg: $white !default;
|
|
|
|
$IconPicker-content-maxHeight: px2rem(350px) !default;
|
2020-03-02 15:40:05 +08:00
|
|
|
$IconPicker-padding: px2rem(5px) !default;
|
2019-05-05 10:49:20 +08:00
|
|
|
$IconPicker-sugItem-width: px2rem(28px) !default;
|
|
|
|
$IconPicker-sugItem-height: px2rem(28px) !default;
|
|
|
|
$IconPicker-sugItem-lineHeight: px2rem(28px) !default;
|
|
|
|
$IconPicker-selectedIcon-marginRight: px2rem(5px) !default;
|
|
|
|
|
|
|
|
// Audio
|
|
|
|
$Audio-height: px2rem(50px) !default;
|
|
|
|
$Audio-lineHeight: px2rem(50px) !default;
|
|
|
|
$Audio-border: px2rem(1px) solid #dee2e6 !default;
|
|
|
|
$Audio-rate-width: px2rem(40px) !default;
|
|
|
|
$Audio-rate-height: px2rem(50px) !default;
|
|
|
|
$Audio-rate-lineHeight: px2rem(50px) !default;
|
|
|
|
$Audio-rate-bg: #dee2e6 !default;
|
|
|
|
$Audio-rateControlItem-bg: #dee2e6 !default;
|
|
|
|
$Audio-rateControlItem-borderRight: px2rem(1px) solid #d3dae0 !default;
|
2019-05-08 17:12:39 +08:00
|
|
|
$Audio-play-width: px2rem(20px) !default;
|
2019-05-05 10:49:20 +08:00
|
|
|
$Audio-play-top: px2rem(5px) !default;
|
2019-05-08 17:12:39 +08:00
|
|
|
$Audio-times-width: px2rem(75px) !default;
|
|
|
|
$Audio-times-margin: 0 px2rem(5px) !default;
|
2019-07-17 10:16:40 +08:00
|
|
|
$Audio-process-minWidth: px2rem(80px) !default;
|
2019-05-08 17:12:39 +08:00
|
|
|
$Audio-volume-width: px2rem(20px) !default;
|
2019-07-05 10:01:01 +08:00
|
|
|
$Audio-volume-height: px2rem(50px) !default;
|
|
|
|
$Audio-volume-lineHeight: px2rem(50px) !default;
|
2019-05-08 17:12:39 +08:00
|
|
|
$Audio-volumeControl-width: px2rem(110px) !default;
|
2019-05-05 10:49:20 +08:00
|
|
|
$Audio-input-width: px2rem(80px) !default;
|
|
|
|
$Audio-track-height: px2rem(6px) !default;
|
|
|
|
$Audio-track-bg: #d7dbdd !default;
|
|
|
|
$Audio-track-borderRadius: px2rem(3px) !default;
|
|
|
|
$Audio-track-border: px2rem(1px) solid transparent !default;
|
|
|
|
$Audio-thumb-width: px2rem(14px) !default;
|
|
|
|
$Audio-thumb-height: px2rem(14px) !default;
|
|
|
|
$Audio-thumb-bg: #606670 !default;
|
|
|
|
$Audio-thumb-marginTop: px2rem(-5px) !default;
|
|
|
|
$Audio-svg-width: px2rem(20px) !default;
|
|
|
|
$Audio-svg-height: px2rem(20px) !default;
|
2019-05-08 17:12:39 +08:00
|
|
|
$Audio-svg-top: px2rem(6px) !default;
|
2019-05-15 16:10:20 +08:00
|
|
|
$Audio-item-margin: px2rem(10px) !default;
|
2019-05-16 16:31:20 +08:00
|
|
|
|
|
|
|
// Carousel
|
2019-09-09 00:53:39 +08:00
|
|
|
$Carousel-bg: #f6f8f8;
|
2019-05-16 16:31:20 +08:00
|
|
|
$Carousel-minWidth: px2rem(100px) !default;
|
|
|
|
$Carousel-height: px2rem(200px) !default;
|
|
|
|
$Carousel-arrowControl-width: px2rem(20px) !default;
|
|
|
|
$Carousel-arrowControl-height: px2rem(20px) !default;
|
|
|
|
$Carousel-svg-width: px2rem(20px) !default;
|
|
|
|
$Carousel-svg-height: px2rem(20px) !default;
|
|
|
|
$Carousel-dot-width: px2rem(8px) !default;
|
|
|
|
$Carousel-dot-height: px2rem(8px) !default;
|
|
|
|
$Carousel-dot-borderRadius: px2rem(4px) !default;
|
|
|
|
$Carousel-dot-margin: px2rem(7px) px2rem(5px) !default;
|
2019-05-17 12:46:57 +08:00
|
|
|
$Carousel--light-control: white !default;
|
|
|
|
$Carousel--dark-control: black !default;
|
|
|
|
$Carousel-transitionDuration: 0.3s !default;
|
|
|
|
$Carousel-imageTitle-bottom: px2rem(45px) !default;
|
2019-07-25 11:24:36 +08:00
|
|
|
$Carousel-imageDescription-bottom: px2rem(25px) !default;
|
|
|
|
|
|
|
|
// Picker
|
2019-11-09 17:04:48 +08:00
|
|
|
$Picker-iconColor: $icon-color !default;
|
|
|
|
$Picker-onHover-iconColor: $icon-onHover-color !default;
|
2020-06-09 14:44:38 +08:00
|
|
|
|
|
|
|
// Status
|
|
|
|
$Satus-icon-width: px2rem(20px) !default;
|
|
|
|
$Satus-icon-height: $Satus-icon-width !default;
|