mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
fix: background color problem of time-picker component in night mode; 🐛
修复:时间选择组件夜晚模式下的背景色问题;
This commit is contained in:
parent
f6904cfa60
commit
09348fd627
@ -16,6 +16,7 @@ const light = {
|
||||
'shadow-color': 'rgba(0, 0, 0, 0.15)',
|
||||
'border-color-split': '#f0f0f0',
|
||||
'background-color-light': '#fafafa',
|
||||
'background-color-base': '#f5f5f5',
|
||||
'table-selected-row-bg': '#fafafa',
|
||||
'checkbox-check-color': '#fff',
|
||||
'disabled-color': 'rgba(0, 0, 0, 0.25)',
|
||||
@ -37,13 +38,14 @@ const dark = {
|
||||
'shadow-color': 'rgba(0, 0, 0, 0.15)',
|
||||
'border-color-split': '#f0f0f0',
|
||||
'background-color-light': '#fafafa',
|
||||
'background-color-base': '#f5f5f5',
|
||||
'table-selected-row-bg': '#fafafa',
|
||||
'checkbox-check-color': '#fff',
|
||||
'disabled-color': 'rgba(0, 0, 0, 0.25)',
|
||||
'menu-dark-color': 'rgba(254, 254, 254, 0.65)',
|
||||
'menu-dark-highlight-color': '#fefefe',
|
||||
'menu-dark-arrow-color': '#fefefe',
|
||||
'btn-primary-color': '#fff',
|
||||
'btn-primary-color': '#fff'
|
||||
}
|
||||
|
||||
// 黑夜模式
|
||||
@ -57,8 +59,9 @@ const night = {
|
||||
'text-color-secondary': 'rgba(255, 255, 255, 0.45)',
|
||||
'shadow-color': 'rgba(255, 255, 255, 0.15)',
|
||||
'border-color-split': '#303030',
|
||||
'background-color-light': '#404040',
|
||||
'table-selected-row-bg': '#404040',
|
||||
'background-color-light': '#ffffff0a',
|
||||
'background-color-base': '#2a2a2a',
|
||||
'table-selected-row-bg': '#ffffff0a',
|
||||
'checkbox-check-color': '#141414',
|
||||
'disabled-color': 'rgba(255, 255, 255, 0.25)',
|
||||
'menu-dark-color': 'rgba(254, 254, 254, 0.65)',
|
||||
|
3
src/theme/antd/ant-time-picker.less
Normal file
3
src/theme/antd/ant-time-picker.less
Normal file
@ -0,0 +1,3 @@
|
||||
.ant-time-picker-panel-input{
|
||||
background-color: @component-background;
|
||||
}
|
1
src/theme/antd/index.less
Normal file
1
src/theme/antd/index.less
Normal file
@ -0,0 +1 @@
|
||||
@import "ant-time-picker";
|
@ -1,2 +1,3 @@
|
||||
@import '~ant-design-vue/dist/antd.less';
|
||||
@import "default/index";
|
||||
@import "antd/index";
|
||||
|
@ -1 +1 @@
|
||||
@import "./default/index";
|
||||
@import "default/index";
|
||||
|
Loading…
x
Reference in New Issue
Block a user