2017-08-04 17:58:32 +08:00
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2017-01-01 22:20:06 +08:00
@import "../color/colors";
2017-04-29 03:24:45 +08:00
// The prefix to use on all css classes from ant.
2016-09-14 16:18:33 +08:00
@ant-prefix : ant;
2017-04-29 03:24:45 +08:00
// -------- Colors -----------
2017-01-01 22:20:06 +08:00
@primary-color : @blue-6;
2017-03-23 13:57:14 +08:00
@info-color : @blue-6;
2017-01-01 22:20:06 +08:00
@success-color : @green-6;
@error-color : @red-6;
@highlight-color : @red-6;
2017-10-09 18:24:12 +08:00
@warning-color : @gold-6;
2016-08-20 17:43:46 +08:00
@normal-color : #d9d9d9;
2015-06-09 15:21:44 +08:00
2017-04-29 03:24:45 +08:00
// Color used by default to control hover and active backgrounds and for
// alert info backgrounds.
2017-01-01 22:20:06 +08:00
@primary-1: color(~`colorPalette("@{primary-color}", 1)`); // replace tint(@primary-color, 90%)
@primary-2: color(~`colorPalette("@{primary-color}", 2)`); // replace tint(@primary-color, 80%)
2017-08-23 13:57:01 +08:00
@primary-3: color(~`colorPalette("@{primary-color}", 3)`); // unused
@primary-4: color(~`colorPalette("@{primary-color}", 4)`); // unused
@primary-5: color(~`colorPalette("@{primary-color}", 5)`); // color used to control the text color in many active and hover states, replace tint(@primary-color, 20%)
@primary-6: @primary-color; // color used to control the text color of active buttons, don't use, use @primary-color
2017-01-01 22:20:06 +08:00
@primary-7: color(~`colorPalette("@{primary-color}", 7)`); // replace shade(@primary-color, 5%)
2017-08-23 13:57:01 +08:00
@primary-8: color(~`colorPalette("@{primary-color}", 8)`); // unused
@primary-9: color(~`colorPalette("@{primary-color}", 9)`); // unused
@primary-10: color(~`colorPalette("@{primary-color}", 10)`); // unused
2017-01-01 22:20:06 +08:00
2017-04-29 03:24:45 +08:00
// Base Scaffolding Variables
// ---
// Background color for `<body>`
2015-06-09 15:21:44 +08:00
@body-background : #fff;
2017-04-29 03:24:45 +08:00
// Base background color for most components
2016-11-29 11:56:10 +08:00
@component-background : #fff;
2017-08-17 21:51:25 +08:00
@font-family-no-number : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
@font-family : "Helvetica Neue For Number", @font-family-no-number;
2016-12-15 15:31:11 +08:00
@code-family : Consolas, Menlo, Courier, monospace;
2017-03-07 14:00:15 +08:00
@heading-color : fade(#000, 85%);
2017-01-03 00:12:23 +08:00
@text-color : fade(#000, 65%);
2017-09-22 18:33:43 +08:00
@text-color-secondary : fade(#000, 45%);
@heading-color-dark : fade(#fff, 100%);
@text-color-dark : fade(#fff,85%);
@text-color-secondary-dark: fade(#fff, 65%);
2017-09-07 11:13:38 +08:00
@font-size-base : 14px;
2016-11-08 21:07:01 +08:00
@font-size-lg : @font-size-base + 2px;
2017-09-27 22:32:49 +08:00
@font-size-sm : 12px;
2015-06-09 15:21:44 +08:00
@line-height-base : 1.5;
2016-11-13 18:31:40 +08:00
@border-radius-base : 4px;
@border-radius-sm : 2px;
2015-06-09 15:21:44 +08:00
2017-09-27 22:32:49 +08:00
// vertical paddings
@padding-lg : 24px; // containers
@padding-md : 16px; // small containers and buttons
@padding-sm : 12px; // Form controls and items
@padding-xs : 8px; // small items
// vertical padding for all form controls
@control-padding-horizontal: @padding-sm;
@control-padding-horizontal-sm: @padding-xs;
2017-05-03 22:57:14 +08:00
// The background colors for active and hover states for things like
// list items or table cells.
@item-active-bg : @primary-1;
@item-hover-bg : @primary-1;
2017-04-29 02:05:56 +08:00
2015-06-09 15:21:44 +08:00
// ICONFONT
@iconfont-css-prefix : anticon;
2017-09-27 22:32:49 +08:00
@icon-url : "https://at.alicdn.com/t/font_148784_imrz4lshfwimgqfr";
2015-06-09 15:21:44 +08:00
// LINK
2017-01-01 22:20:06 +08:00
@link-color : @primary-color;
@link-hover-color : @primary-5;
@link-active-color : @primary-7;
2017-10-07 15:31:25 +08:00
@link-decoration : none;
2015-06-09 15:21:44 +08:00
@link-hover-decoration : none;
// Animation
2015-07-02 13:57:26 +08:00
@ease-out : cubic-bezier(0.215, 0.61, 0.355, 1);
@ease-in : cubic-bezier(0.55, 0.055, 0.675, 0.19);
@ease-in-out : cubic-bezier(0.645, 0.045, 0.355, 1);
2016-01-07 16:52:27 +08:00
@ease-out-back : cubic-bezier(0.12, 0.4, 0.29, 1.46);
@ease-in-back : cubic-bezier(0.71, -0.46, 0.88, 0.6);
@ease-in-out-back : cubic-bezier(0.71, -0.46, 0.29, 1.46);
2015-06-09 18:09:47 +08:00
@ease-out-circ : cubic-bezier(0.08, 0.82, 0.17, 1);
@ease-in-circ : cubic-bezier(0.6, 0.04, 0.98, 0.34);
@ease-in-out-circ : cubic-bezier(0.78, 0.14, 0.15, 0.86);
2015-08-19 15:46:33 +08:00
@ease-out-quint : cubic-bezier(0.23, 1, 0.32, 1);
@ease-in-quint : cubic-bezier(0.755, 0.05, 0.855, 0.06);
@ease-in-out-quint : cubic-bezier(0.86, 0, 0.07, 1);
2015-06-09 15:21:44 +08:00
2015-12-02 11:53:37 +08:00
// Border color
2017-09-22 18:33:43 +08:00
@border-color-base : hsv(0, 0, 85%); // base border outline a component
@border-color-split : hsv(0, 0, 91%); // split border inside a component
2017-01-31 16:05:10 +08:00
@border-width-base : 1px; // width of the border for a component
@border-style-base : solid; // style of a components border
2015-12-02 11:53:37 +08:00
2016-08-31 17:04:24 +08:00
// Outline
@outline-blur-size : 0;
@outline-width : 2px;
@outline-color : @primary-color;
2017-09-27 22:32:49 +08:00
@background-color-light : hsv(0, 0, 98%); // background of header and selected item
@background-color-base : hsv(0, 0, 96%); // Default grey background color
2016-07-21 15:02:24 +08:00
2017-04-29 04:04:41 +08:00
// Disabled states
@disabled-color : fade(#000, 25%);
@disabled-bg : @background-color-base;
@disabled-color-dark : fade(#fff, 35%);
2016-04-17 18:19:22 +08:00
// Shadow
2017-09-27 22:32:49 +08:00
@shadow-color : rgba(0, 0, 0, .15);
2016-04-17 18:19:22 +08:00
@box-shadow-base : @shadow-1-down;
2017-09-27 22:32:49 +08:00
@shadow-1-up : 0 2px 8px @shadow-color;
@shadow-1-down : 0 2px 8px @shadow-color;
@shadow-1-left : -2px 0 8px @shadow-color;
@shadow-1-right : 2px 0 8px @shadow-color;
@shadow-2 : 0 4px 12px @shadow-color;
2016-04-17 18:19:22 +08:00
2015-06-15 11:43:18 +08:00
// Buttons
2017-09-19 20:24:47 +08:00
@btn-font-weight : 400;
2016-09-19 17:41:41 +08:00
@btn-border-radius-base : @border-radius-base;
2017-02-08 14:21:29 +08:00
@btn-border-radius-sm : @border-radius-base;
2015-06-09 15:21:44 +08:00
@btn-primary-color : #fff;
2015-07-06 12:31:30 +08:00
@btn-primary-bg : @primary-color;
2015-06-09 15:21:44 +08:00
2015-12-02 11:53:37 +08:00
@btn-default-color : @text-color;
2017-01-23 22:24:36 +08:00
@btn-default-bg : #fff;
2015-12-02 11:53:37 +08:00
@btn-default-border : @border-color-base;
2015-06-09 15:21:44 +08:00
2017-04-29 04:04:41 +08:00
@btn-danger-color : @error-color;
@btn-danger-bg : @background-color-base;
@btn-danger-border : @border-color-base;
2015-06-09 15:21:44 +08:00
2017-01-01 22:20:06 +08:00
@btn-disable-color : @disabled-color;
2017-04-29 04:04:41 +08:00
@btn-disable-bg : @disabled-bg;
2015-12-02 11:53:37 +08:00
@btn-disable-border : @border-color-base;
2015-06-09 15:21:44 +08:00
2017-09-27 22:32:49 +08:00
@btn-padding-base : 0 @padding-md - 1px;
2017-09-19 20:24:47 +08:00
@btn-font-size-lg : @font-size-base;
2017-09-27 22:32:49 +08:00
@btn-font-size-sm : @font-size-base;
2017-04-16 19:01:46 +08:00
@btn-padding-lg : @btn-padding-base;
2017-09-27 22:32:49 +08:00
@btn-padding-sm : 0 @padding-xs - 1px;
2015-06-09 15:21:44 +08:00
2017-09-27 22:32:49 +08:00
@btn-height-base : 32px;
@btn-height-lg : 40px;
@btn-height-sm : 24px;
2017-04-16 19:01:46 +08:00
@btn-circle-size : @btn-height-base;
@btn-circle-size-lg : @btn-height-lg;
@btn-circle-size-sm : @btn-height-sm;
2015-06-09 15:21:44 +08:00
2017-10-11 12:01:27 +08:00
@btn-group-border : @primary-5;
2017-01-23 22:24:36 +08:00
2017-09-23 18:18:47 +08:00
// Checkbox
2017-09-27 22:32:49 +08:00
@checkbox-size : 16px;
// Radio
@radio-size : 16px;
2017-09-23 18:18:47 +08:00
2017-04-22 14:09:25 +08:00
// Radio buttons
2017-09-23 18:18:47 +08:00
@radio-button-bg : @btn-default-bg;
@radio-button-color : @btn-default-color;
2017-04-22 14:09:25 +08:00
2015-06-09 18:22:52 +08:00
// Media queries breakpoints
// Extra small screen / phone
@screen-xs : 480px;
@screen-xs-min : @screen-xs;
// Small screen / tablet
2017-08-16 20:19:41 +08:00
@screen-sm : 576px;
2015-06-09 18:22:52 +08:00
@screen-sm-min : @screen-sm;
// Medium screen / desktop
2017-08-16 20:19:41 +08:00
@screen-md : 768px;
2015-06-09 18:22:52 +08:00
@screen-md-min : @screen-md;
// Large screen / wide desktop
2017-08-16 20:19:41 +08:00
@screen-lg : 992px;
2015-06-09 18:22:52 +08:00
@screen-lg-min : @screen-lg;
2017-02-13 15:44:58 +08:00
2017-08-16 20:19:41 +08:00
// Extra large screen / full hd
@screen-xl : 1200px;
2017-02-13 15:44:58 +08:00
@screen-xl-min : @screen-xl;
2017-08-16 20:19:41 +08:00
// Extra extra large screen / large descktop
@screen-xxl : 1600px;
@screen-xxl-min : @screen-xxl;
2017-02-13 15:44:58 +08:00
// provide a maximum
2017-07-17 15:44:40 +08:00
@screen-xs-max : (@screen-sm-min - 1px);
@screen-sm-max : (@screen-md-min - 1px);
@screen-md-max : (@screen-lg-min - 1px);
@screen-lg-max : (@screen-xl-min - 1px);
2017-08-16 20:19:41 +08:00
@screen-xl-max : (@screen-xxl-min - 1px);
2015-06-09 18:22:52 +08:00
2016-12-30 21:41:28 +08:00
// Grid system
2015-06-09 18:22:52 +08:00
@grid-columns : 24;
@grid-gutter-width : 0;
2016-12-30 21:41:28 +08:00
// Layout
2017-10-18 20:59:48 +08:00
@layout-body-background : #f0f2f5;
2017-10-19 16:07:39 +08:00
@layout-header-background : #001529;
2017-10-06 16:09:33 +08:00
@layout-footer-background : @layout-body-background;
2017-03-05 21:10:34 +08:00
@layout-header-height : 64px;
@layout-header-padding : 0 50px;
@layout-footer-padding : 24px 50px;
2017-03-05 21:34:57 +08:00
@layout-sider-background : @layout-header-background;
2017-03-05 21:10:34 +08:00
@layout-trigger-height : 48px;
2017-09-27 22:32:49 +08:00
@layout-trigger-background : #002140;
2017-07-22 02:21:31 +08:00
@layout-trigger-color : #fff;
2017-03-05 21:34:57 +08:00
@layout-zero-trigger-width : 36px;
@layout-zero-trigger-height : 42px;
2016-12-30 21:41:28 +08:00
2016-03-28 16:01:37 +08:00
// z-index list
2016-11-09 14:45:50 +08:00
@zindex-affix : 10;
2016-06-23 23:12:18 +08:00
@zindex-back-top : 10;
2016-06-15 11:24:26 +08:00
@zindex-modal-mask : 1000;
2016-03-28 16:01:37 +08:00
@zindex-modal : 1000;
@zindex-notification : 1010;
@zindex-message : 1010;
@zindex-popover : 1030;
@zindex-picker : 1050;
@zindex-dropdown : 1050;
@zindex-tooltip : 1060;
2016-10-07 18:29:55 +08:00
// Animation
@animation-duration-slow: .3s; // Modal
@animation-duration-base: .2s;
@animation-duration-fast: .1s; // Tooltip
2015-06-09 19:45:18 +08:00
// Form
2016-10-07 14:50:53 +08:00
// ---
2016-11-09 21:30:02 +08:00
@label-required-color : @highlight-color;
2017-06-26 11:51:31 +08:00
@label-color : @heading-color;
2017-10-09 11:09:25 +08:00
@form-item-margin-bottom : 32px;
2017-04-22 01:47:38 +08:00
@form-item-trailing-colon : true;
2015-06-09 19:45:18 +08:00
2016-10-07 14:50:53 +08:00
// Input
// ---
2017-09-27 22:32:49 +08:00
@input-height-base : 32px;
@input-height-lg : 40px;
@input-height-sm : 24px;
@input-padding-horizontal : @control-padding-horizontal - 1px;
@input-padding-horizontal-sm : @control-padding-horizontal-sm - 1px;
2015-06-09 19:45:18 +08:00
@input-padding-vertical-base : 4px;
@input-padding-vertical-sm : 1px;
2015-08-04 14:41:30 +08:00
@input-padding-vertical-lg : 6px;
2017-09-23 18:21:33 +08:00
@input-placeholder-color : hsv(0, 0, 75%);
2015-12-02 11:53:37 +08:00
@input-color : @text-color;
@input-border-color : @border-color-base;
2015-06-09 19:45:18 +08:00
@input-bg : #fff;
2017-10-16 16:13:35 +08:00
@input-addon-bg : @background-color-light;
2015-07-08 15:18:28 +08:00
@input-hover-border-color : @primary-color;
2017-04-29 04:04:41 +08:00
@input-disabled-bg : @disabled-bg;
2015-07-07 11:32:08 +08:00
2016-10-07 14:50:53 +08:00
// Tooltip
// ---
//* Tooltip max width
@tooltip-max-width: 250px;
//** Tooltip text color
@tooltip-color: #fff;
//** Tooltip background color
2017-08-25 10:11:22 +08:00
@tooltip-bg: rgba(0, 0, 0, .75);
2016-10-07 14:50:53 +08:00
//** Tooltip arrow width
@tooltip-arrow-width: 5px;
//** Tooltip distance with trigger
2017-07-17 15:44:40 +08:00
@tooltip-distance: @tooltip-arrow-width - 1px + 4px;
2016-10-07 14:50:53 +08:00
//** Tooltip arrow color
@tooltip-arrow-color: @tooltip-bg;
2016-10-07 14:56:11 +08:00
// Popover
// ---
//** Popover body background color
@popover-bg: #fff;
2017-05-04 01:35:06 +08:00
//** Popover text color
@popover-color: @text-color;
2016-10-07 14:56:11 +08:00
//** Popover maximum width
@popover-min-width: 177px;
//** Popover arrow width
2017-10-18 17:16:14 +08:00
@popover-arrow-width: 5px;
2016-10-07 14:56:11 +08:00
//** Popover arrow color
@popover-arrow-color: @popover-bg;
//** Popover outer arrow width
//** Popover outer arrow color
2017-10-19 16:00:24 +08:00
@popover-arrow-outer-color: @popover-bg;
2017-05-13 15:07:01 +08:00
//** Popover distance with trigger
2017-07-17 15:44:40 +08:00
@popover-distance: @popover-arrow-width + 4px;
2016-11-13 18:31:40 +08:00
2017-04-25 16:43:42 +08:00
// Modal
// --
2017-09-27 22:32:49 +08:00
@modal-mask-bg: rgba(0, 0, 0, 0.65);
2017-04-25 16:43:42 +08:00
2016-11-13 18:31:40 +08:00
// Progress
// --
@process-default-color: @primary-color;
2017-04-29 04:04:41 +08:00
@progress-remaining-color: @background-color-base;
2017-01-03 00:12:23 +08:00
// Menu
2017-01-07 22:04:52 +08:00
// ---
2017-02-27 23:45:54 +08:00
@menu-dark-bg: @layout-header-background;
2017-10-19 16:07:39 +08:00
@menu-dark-submenu-bg: #000c17;
2017-09-22 18:33:43 +08:00
@menu-collapsed-width: 80px;
2017-01-07 22:04:52 +08:00
// Spin
// ---
@spin-dot-size-sm: 14px;
@spin-dot-size: 20px;
@spin-dot-size-lg: 32px;
2017-01-10 22:10:37 +08:00
2017-04-11 17:08:09 +08:00
// Table
// --
2017-09-27 22:32:49 +08:00
@table-header-bg: @background-color-light;
@table-header-sort-bg: @background-color-base;
2017-04-11 17:56:38 +08:00
@table-row-hover-bg: @primary-1;
2017-04-26 10:16:26 +08:00
@table-padding-vertical: 16px;
2017-10-18 17:16:14 +08:00
@table-padding-horizontal: 16px;
2017-04-11 17:08:09 +08:00
2017-05-03 22:33:28 +08:00
// Tag
// --
2017-10-16 16:13:35 +08:00
@tag-default-bg: @background-color-light;
2017-05-03 22:33:28 +08:00
@tag-default-color: @text-color;
2017-09-27 22:32:49 +08:00
@tag-font-size: @font-size-sm;
2017-05-03 22:33:28 +08:00
2017-01-10 22:10:37 +08:00
// TimePicker
// ---
@time-picker-panel-column-width: 56px;
@time-picker-panel-width: @time-picker-panel-column-width * 3;
2017-05-03 23:06:07 +08:00
@time-picker-selected-bg: @background-color-base;
2017-01-15 22:48:57 +08:00
// Carousel
// ---
@carousel-dot-width: 16px;
@carousel-dot-height: 3px;
@carousel-dot-active-width: 24px;
2017-02-03 14:20:42 +08:00
// Badge
// ---
@badge-height: 20px;
2017-10-16 19:53:46 +08:00
@badge-dot-size: 6px;
2017-09-27 22:32:49 +08:00
@badge-font-size: @font-size-sm;
@badge-status-size: 6px;
2017-03-10 14:58:01 +08:00
// Rate
// ---
2017-10-09 18:24:12 +08:00
@rate-star-color: @yellow-6;
2017-09-27 22:32:49 +08:00
@rate-star-bg: @border-color-split;
2017-03-17 11:46:50 +08:00
// Card
// ---
@card-head-color: @heading-color;
@card-head-background: @component-background;
2017-08-23 19:02:27 +08:00
@card-head-padding: 16px;
@card-inner-head-padding: 12px;
2017-09-22 18:13:06 +08:00
@card-padding-base: 24px;
@card-padding-wider: 32px;
2017-10-19 10:01:59 +08:00
@card-actions-background: @background-color-light;
2017-09-27 22:32:49 +08:00
@card-shadow: 0 2px 8px rgba(0, 0, 0, .09);
2017-04-29 04:04:41 +08:00
2017-05-01 21:58:37 +08:00
// Tabs
// ---
2017-09-27 22:32:49 +08:00
@tabs-card-head-background: @background-color-light;
@tabs-card-height: 40px;
@tabs-title-font-size: @font-size-base;
2017-05-09 17:15:54 +08:00
// BackTop
2017-09-27 22:32:49 +08:00
// ---
2017-05-09 17:15:54 +08:00
@back-top-color: #fff;
2017-09-27 22:32:49 +08:00
@back-top-bg: @text-color-secondary;
@back-top-hover-bg: @text-color;
2017-05-28 14:20:59 +08:00
// Avatar
2017-09-27 22:32:49 +08:00
// ---
2017-05-28 14:20:59 +08:00
@avatar-size-base: 32px;
@avatar-size-lg: 40px;
@avatar-size-sm: 24px;
@avatar-font-size-base: 18px;
@avatar-font-size-lg: 24px;
@avatar-font-size-sm: 14px;
@avatar-bg: #ccc;
@avatar-color: #fff;
@avatar-border-radius: @border-radius-base;
2017-09-27 22:32:49 +08:00
// Switch
// ---
@switch-height: 22px;
@switch-sm-height: 16px;
// Pagination
// ---
@pagination-item-size: 32px;
@pagination-item-size-sm: 24px;