|
@@ -241,14 +241,44 @@
|
|
|
background-color: transparent !important;
|
|
background-color: transparent !important;
|
|
|
overflow-x: hidden;
|
|
overflow-x: hidden;
|
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
|
|
|
+ border-right: none !important;
|
|
|
|
|
|
|
|
&-item {
|
|
&-item {
|
|
|
- transition: font-weight 0.2s ease;
|
|
|
|
|
|
|
+ transition: all 0.2s ease;
|
|
|
|
|
+ margin: 4px 8px !important;
|
|
|
|
|
+ border-radius: 6px !important;
|
|
|
|
|
+ height: 40px !important;
|
|
|
|
|
+ line-height: 40px !important;
|
|
|
|
|
|
|
|
- &-selected, &-active {
|
|
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background-color: rgba(24, 144, 255, 0.06) !important;
|
|
|
|
|
+ color: @primary-color !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &-selected {
|
|
|
font-weight: 600 !important;
|
|
font-weight: 600 !important;
|
|
|
color: @primary-color !important;
|
|
color: @primary-color !important;
|
|
|
|
|
+ background-color: rgba(24, 144, 255, 0.1) !important;
|
|
|
|
|
+
|
|
|
|
|
+ &::after {
|
|
|
|
|
+ display: none !important;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ &-active {
|
|
|
|
|
+ font-weight: 600 !important;
|
|
|
|
|
+ color: @primary-color !important;
|
|
|
|
|
+ background-color: rgba(24, 144, 255, 0.06) !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 确保选中状态的图标也有正确的颜色
|
|
|
|
|
+ &-item-selected .anticon {
|
|
|
|
|
+ color: @primary-color !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &-item-active .anticon {
|
|
|
|
|
+ color: @primary-color !important;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|