mirror of https://github.com/ElemeFE/element
Table: added scss variable $--table-border-color (#10179)
parent
4ee094cd66
commit
c48a69c947
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "element-table",
|
"name": "element-table",
|
||||||
"version": "2.0.0",
|
"version": "2.2.2",
|
||||||
"description": "A table component for Vue.",
|
"description": "A table component for Vue.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"element",
|
"element",
|
||||||
|
|
|
@ -475,7 +475,8 @@ $--dialog-padding-primary: 20px !default;
|
||||||
|
|
||||||
/* Table
|
/* Table
|
||||||
-------------------------- */
|
-------------------------- */
|
||||||
$--table-border: 1px solid $--border-color-lighter !default;
|
$--table-border-color: $--border-color-lighter !default;
|
||||||
|
$--table-border: 1px solid $--table-border-color !default;
|
||||||
$--table-text-color: $--color-text-regular !default;
|
$--table-text-color: $--color-text-regular !default;
|
||||||
$--table-header-color: $--color-text-secondary !default;
|
$--table-header-color: $--color-text-secondary !default;
|
||||||
$--table-row-hover-background: $--background-color-base !default;
|
$--table-row-hover-background: $--background-color-base !default;
|
||||||
|
|
|
@ -253,7 +253,7 @@
|
||||||
@include share-rule(border-pseudo) {
|
@include share-rule(border-pseudo) {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background-color: $--border-color-lighter;
|
background-color: $--table-border-color;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue