diff --git a/components/menu/style/index.scss b/components/menu/style/index.scss index 7c794e30b..7e05d0a20 100644 --- a/components/menu/style/index.scss +++ b/components/menu/style/index.scss @@ -325,6 +325,8 @@ &--mini { .hi-menu-item { &--active { + background-color: rgba($value, 0.1); + &::after { background-color: $value; } @@ -336,8 +338,8 @@ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15); .hi-menu-item { - &--active { - background-color: rgba($value, 0.15); + &--active:not(.hi-submenu) { + background-color: rgba($value, 0.1); &::after { background-color: $value; @@ -347,7 +349,7 @@ .hi-menu__title { &:hover { - background-color: rgba($value, 0.15); + background-color: rgba($value, 0.1); } } } diff --git a/components/table/style/Table.scss b/components/table/style/Table.scss index 66c56040a..e34d94a77 100644 --- a/components/table/style/Table.scss +++ b/components/table/style/Table.scss @@ -42,7 +42,7 @@ $borderColor: #e6e7e8 !default; position: relative; } - .hi-icon { + .hi-icon.icon-menu { color: #4284f5; } @@ -461,7 +461,7 @@ $borderColor: #e6e7e8 !default; @each $key, $value in $theme-colors { .theme__#{$key}.hi-table { .hi-table-container table th { - background-color: rgba($value, 0.3); + background-color: rgba($value, 0.1); color: #83868c; } @@ -470,7 +470,11 @@ $borderColor: #e6e7e8 !default; color: #83868c; } - .hi-icon { + .hi-table-container table .hi-table-thead tr:hover { + background-color: #fff; + } + + .hi-icon.icon-menu { color: $value; } @@ -494,5 +498,21 @@ $borderColor: #e6e7e8 !default; } } } + + .hi-pagination { + .hi-icon { + color: #666; + } + + .hi-icon:hover { + color: $value; + } + } + + .hi-pagination:hover > span { + .hi-icon { + color: $value; + } + } } } diff --git a/components/tabs/ItemDropdown.js b/components/tabs/ItemDropdown.js index 2c31d2ea4..92dbdee50 100644 --- a/components/tabs/ItemDropdown.js +++ b/components/tabs/ItemDropdown.js @@ -51,7 +51,8 @@ class ItemDropdown extends Component { items, onChoose, localeDatas, - activeId + activeId, + theme } = this.props const { visible @@ -61,7 +62,7 @@ class ItemDropdown extends Component { if (item.tabId === activeId) activeIndex = index }) return ( -