diff --git a/src/assets/theme/blue.scss b/src/assets/theme/blue.scss index ce42f5749e385721e5ff82fdb50a6957517e6ad7..2ef490a5530142726d1f541d68f1e8c7b9efad29 100644 --- a/src/assets/theme/blue.scss +++ b/src/assets/theme/blue.scss @@ -182,5 +182,61 @@ body[data-theme='blue'] { } } + .ant-pagination{ + .ant-pagination-item-link { + border-radius: 20px; + &:hover { + border-color: $blue-theme; + } + } + .ant-pagination-item,.ant-pagination-prev,.ant-pagination-next{ + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + a{ + &:hover{ + color: $blue-theme; + } + } + } + .ant-pagination-item-active{ + border-color: $blue-theme; + a{ + color: $blue-theme; + } + } + .ant-select-selection { + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + } + } + + .ant-input{ + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + &:focus{ + border-color: $blue-theme; + box-shadow: 0 0 0 2px $blue-theme-rgb; + } + } + .ant-input-number{ + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + &:focus{ + border-color: $blue-theme; + box-shadow: 0 0 0 2px $blue-theme-rgb; + } + .ant-input-number-handler-wrap{ + border-radius: 0 20px 20px 0; + } + } + } \ No newline at end of file