Skip to content

Commit

Permalink
fix: border-color use solid color
Browse files Browse the repository at this point in the history
  • Loading branch information
ycjcl868 committed Dec 3, 2019
1 parent 0da761d commit d8ab994
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions components/style/themes/dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@
@item-hover-bg: fade(@white, 8%);

// Border color
@border-color-base: fade(@white, 20%); // base border outline a component
@border-color-split: fade(@white, 12%); // split border inside a component
@border-color-base: #434343; // base border outline a component
@border-color-split: @gray-11; // split border inside a component

@background-color-light: fade(@white, 4%); // background of header and selected item
@background-color-base: fade(@white, 8%); // Default grey background color
Expand Down Expand Up @@ -206,6 +206,7 @@
0 9px 28px 8px rgba(0, 0, 0, 0.15);

// Buttons
// ---
@btn-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
@btn-primary-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
@btn-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
Expand All @@ -219,24 +220,30 @@
@btn-default-ghost-border: fade(@white, 25%);

// Checkbox
// ---
@checkbox-check-bg: transparent;

// Descriptions
// ---
@descriptions-bg: @component-background;

// Modal
// ---
@modal-header-bg: @gray-11;
@modal-content-bg: @gray-11;

// Radio
// ---
@radtio-solid-checked-color: @white;
@radio-dot-disabled-color: fade(@white, 20%);

// Radio buttons
// ---
@radio-disabled-button-checked-bg: fade(@white, 20%);
@radio-disabled-button-checked-color: fade(@white, 25%);

// Layout
// ---
@layout-body-background: @body-background;
@layout-header-background: @component-background;
@layout-sider-background: @component-background;
Expand Down Expand Up @@ -282,8 +289,9 @@

// Table
// --
@table-header-bg: fade(@white, 4%);
@table-header-bg: #1d1d1d;
@table-header-bg-sm: @table-header-bg;
@table-row-hover-bg: #262626;

// TimePicker
// ---
Expand Down

0 comments on commit d8ab994

Please sign in to comment.