Commit e2ddf43699df900dacab7d7d384d7caa53879ad9

Authored by Mikasa33
Committed by GitHub
1 parent 090c76ba

fix(style): fix layout header style, basic arrow style and table search form style (#525)

* style: cursor pointer

* style: light mode, hover background-color

* fix(style): fix form border-radius style
src/components/Basic/src/BasicArrow.vue
... ... @@ -52,6 +52,7 @@
52 52  
53 53 .@{prefix-cls} {
54 54 display: inline-block;
  55 + cursor: pointer;
55 56 transform: rotate(0deg);
56 57 transition: all 0.3s ease 0.1s;
57 58 transform-origin: center center;
... ...
src/components/Table/src/BasicTable.vue
... ... @@ -312,7 +312,7 @@
312 312 padding: 12px 10px 6px 10px;
313 313 margin-bottom: 16px;
314 314 background-color: @component-background;
315   - border-radius: 4px;
  315 + border-radius: 2px;
316 316 }
317 317 }
318 318  
... ...
src/layouts/default/header/components/user-dropdown/index.vue
... ... @@ -153,6 +153,10 @@
153 153 }
154 154  
155 155 &--light {
  156 + &:hover {
  157 + background-color: @header-light-bg-hover-color;
  158 + }
  159 +
156 160 .@{prefix-cls}__name {
157 161 color: @text-color-base;
158 162 }
... ...