update 调整样式·

This commit is contained in:
zk
2024-06-15 15:51:18 +08:00
parent e16b9e054e
commit 0f391ffc22
13 changed files with 243 additions and 90 deletions
+31 -12
View File
@@ -3,7 +3,6 @@
@import "./public-title";
.type-time {
padding-right: 4%;
padding-top: 3%;
font-size: 16px;
display: flex;
@@ -34,6 +33,7 @@
.unSelect.dark {
color: var(--typeTimeUnSelectColor);
}
.select.light {
color: #5876DB;
background-color: #BDC9F5;
@@ -44,7 +44,26 @@
}
.unSelect.light {
background-color: #d2d7f7;
margin-left: 5px;
color: #889BDB;
border: 1px solid #BDC9F5;
border-radius: 5px;
}
}
.type-check {
.select.light {
color: #5876DB;
background-color: #BDC9F5;
position: relative;
margin-left: 5px;
border: 1px solid #607DDB;
border-radius: 5px;
}
.unSelect.light {
background-color: #d2d7f7;
margin-left: 5px;
color: #889BDB;
border: 1px solid #BDC9F5;
@@ -86,14 +105,14 @@
}
// 下拉框样式-start
.ant-select.bg-000 {
color: #fff !important;
background-color: #000;
.ant-select {
color: var(--antSelectFontColor) !important;
background-color: var(--antSelectBg);
}
.ant-select-dropdown {
background-color: var(--antSelectDropdownBg) !important;
border: 1px solid var(----antSelectDropdownBorderColor);
border: 1px solid var(--antSelectDropdownBorderColor);
border-top: none;
}
@@ -115,7 +134,7 @@
// 选中字体颜色
.ant-select-selection-item {
//color: #1b7ef2 !important;
color: #fff;
color: var(--antSelectFontColor);
}
.ant-select-item-option-active {
@@ -123,7 +142,7 @@
}
.ant-select-item-option-active:hover {
background-color: #002e64 !important;
background-color: var(--antSelectItemActive) !important;
}
// 箭头颜色
@@ -132,7 +151,7 @@
}
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
background-color: #002e64 !important;
background-color: var(--antSelectItemActive) !important;
}
// 下拉框样式-end
@@ -143,12 +162,12 @@
}
.ant-cascader-menu-item:hover {
background-color: #002e64 !important;
background-color: var(--antSelectItemActive) !important;
}
.ant-cascader-menu-item-active {
color: #fff !important;
background-color: #002e64 !important;
color: var(--antSelectFontColor) !important;
background-color: var(--antSelectItemActive) !important;
}
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, .ant-cascader-menu-item-loading-icon {
@@ -157,7 +176,7 @@
// 级联选择器样式-end
.ant-empty-description {
color: #fff;
color: var(--antSelectFontColor);
}
//空表格hover白色
+5
View File
@@ -2,6 +2,11 @@
--antSelectDropdownBg: #00152b;
--antSelectDropdownBorderColor: #1b7ef2;
--antSelectItemActive: #002e64;
--antSelectFontColor: #fff;
--antSelectBg: #000;
/*服务详情数据*/
--typeTimeSelectColor: #45a2ff;
--typeTimeUnSelectColor: #a3a4a4;
}
+7
View File
@@ -3,6 +3,9 @@ export const themeList = {
/*下拉框*/
antSelectDropdownBg: '#00152b',
antSelectDropdownBorderColor: '#1b7ef2',
antSelectItemActive: '#002e64', //选中或鼠标移过
antSelectFontColor: '#fff',
antSelectBg: '#000',
/*服务详情数据*/
typeTimeSelectColor: '#45a2ff',
typeTimeUnSelectColor: '#a3a4a4',
@@ -10,6 +13,10 @@ export const themeList = {
light: {
antSelectDropdownBg: '#fff',
antSelectDropdownBorderColor: '#1b7ef2',
antSelectItemActive: '#ced7f6',
antSelectFontColor: '#5876DB',
antSelectBg: '#ced7f6',
/*服务详情数据*/
typeTimeSelectColor: '#45a2ff',
typeTimeUnSelectColor: '#a3a4a4',
},