Showing
1 changed file
with
8 additions
and
5 deletions
... | ... | @@ -31,7 +31,8 @@ |
31 | 31 | } |
32 | 32 | |
33 | 33 | &__header-delete { |
34 | - color: @N8; | |
34 | + color: @N7; | |
35 | + font-size: 16px; | |
35 | 36 | |
36 | 37 | &:hover { |
37 | 38 | color: @E3; |
... | ... | @@ -65,20 +66,22 @@ |
65 | 66 | } |
66 | 67 | |
67 | 68 | &__header-right { |
68 | - transition: all 0.2s ease; | |
69 | - transform: translateX(20px); | |
69 | + //transition: all 0.2s ease; | |
70 | + //transform: translateX(20px); | |
71 | + visibility: hidden; | |
70 | 72 | text-align: right; |
71 | 73 | } |
72 | 74 | |
73 | 75 | &__header-text { |
74 | 76 | &.error { |
75 | - color: @E3 | |
77 | + color: @E3; | |
76 | 78 | } |
77 | 79 | } |
78 | 80 | |
79 | 81 | &:hover { |
80 | 82 | .qx-base-condition-item__header-right { |
81 | - transform: translateX(0); | |
83 | + //transform: translateX(0); | |
84 | + visibility: visible; | |
82 | 85 | } |
83 | 86 | } |
84 | 87 | } | ... | ... |