mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-23 11:50:20 +08:00
fix(button): fix button style error close #312
This commit is contained in:
parent
68ceb2871f
commit
7a6c87f8c1
@ -18,6 +18,7 @@
|
||||
- 修复`PageWrapper`title 不显示
|
||||
- 修复表格已知问题
|
||||
- 修复 BasicTree 组件不能自定义 title 问题
|
||||
- 修复主题切换后按钮样式问题
|
||||
|
||||
## 2.0.3 (2021-03-07)
|
||||
|
||||
|
@ -14,6 +14,11 @@
|
||||
// bottom: 1px;
|
||||
// }
|
||||
// }
|
||||
&-link:hover,
|
||||
&-link:focus,
|
||||
&-link:active {
|
||||
border-color: transparent !important;
|
||||
}
|
||||
|
||||
&-primary {
|
||||
color: @white;
|
||||
@ -70,6 +75,7 @@
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: @button-success-hover-color;
|
||||
border-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
@ -111,6 +117,7 @@
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: @button-warn-hover-color;
|
||||
border-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
@ -144,6 +151,7 @@
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: @button-error-hover-color;
|
||||
border-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
@ -165,9 +173,6 @@
|
||||
color: @white;
|
||||
background-color: fade(@button-error-color, 40%);
|
||||
border-color: fade(@button-error-color, 40%);
|
||||
|
||||
// background-color: @button-error-disabled-color;
|
||||
// border-color: @button-error-disabled-color ;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,6 @@ const menu: MenuModule = {
|
||||
path: '/comp',
|
||||
tag: {
|
||||
dot: true,
|
||||
type: 'warn',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user