2025-08-20 14:39:30 +08:00
|
|
|
@import url('/src/design/transition/index.less');
|
|
|
|
|
@import url('/src/design/var/index.less');
|
|
|
|
|
@import url('/src/design/public.less');
|
|
|
|
|
@import url('/src/design/ant/index.less');
|
|
|
|
|
@import url('/src/design/theme.less');
|
|
|
|
|
|
|
|
|
|
input:-webkit-autofill {
|
2025-10-21 18:04:02 +08:00
|
|
|
box-shadow: 0 0 0 1000px white inset !important;
|
2025-08-20 14:39:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:-webkit-autofill {
|
2025-10-21 18:04:02 +08:00
|
|
|
transition: background-color 5000s ease-in-out 0s !important;
|
2025-08-20 14:39:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
2025-10-21 18:04:02 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-size-adjust: 100%;
|
2025-08-20 14:39:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
2025-10-21 18:04:02 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
overflow-x: hidden !important;
|
2025-08-20 14:39:30 +08:00
|
|
|
|
2025-10-21 18:04:02 +08:00
|
|
|
&.color-weak {
|
|
|
|
|
filter: invert(80%);
|
|
|
|
|
}
|
2025-08-20 14:39:30 +08:00
|
|
|
|
2025-10-21 18:04:02 +08:00
|
|
|
&.gray-mode {
|
|
|
|
|
filter: grayscale(100%);
|
|
|
|
|
filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
|
|
|
|
|
}
|
2025-08-20 14:39:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:focus,
|
|
|
|
|
a:active,
|
|
|
|
|
button,
|
|
|
|
|
div,
|
|
|
|
|
svg,
|
|
|
|
|
span {
|
2025-10-21 18:04:02 +08:00
|
|
|
outline: none !important;
|
2025-08-20 14:39:30 +08:00
|
|
|
}
|
2026-01-07 17:38:57 +08:00
|
|
|
|
|
|
|
|
.formViewStyle {
|
|
|
|
|
margin-left: 1px ;
|
|
|
|
|
margin-right: 1px ;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
.ant-input-number-disabled, input.ant-input-disabled,.ant-picker.ant-picker-disabled {
|
|
|
|
|
border: none !important;
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
padding-left: 0 !important;
|
|
|
|
|
color: rgb(0 0 0 / 85%) !important;
|
|
|
|
|
::placeholder {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
input.ant-input-disabled:placeholder-shown{
|
|
|
|
|
opacity: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-picker-input > input[disabled], .ant-radio-disabled + span {
|
|
|
|
|
color: rgb(0 0 0 / 85%) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-picker.ant-picker-disabled .ant-picker-input .ant-picker-suffix {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-input-search > .ant-input-group > .ant-input-group-addon-disabled:last-child {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-input[disabled] {
|
|
|
|
|
border: none !important;
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-form-item-label > label {
|
|
|
|
|
color: rgba(0, 0, 0, 0.65) !important;
|
|
|
|
|
}
|
2026-01-21 17:56:35 +08:00
|
|
|
}
|
|
|
|
|
.ant-table-container {
|
|
|
|
|
.ant-table-thead > tr > th, .ant-table-tbody > tr > td, .ant-table tfoot > tr > th, .ant-table tfoot > tr > td {
|
|
|
|
|
padding: 0px 8px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.ant-table-thead {
|
|
|
|
|
background: #F6F8FA;
|
|
|
|
|
height: 46px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.ant-table-column-title {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: rgba(0, 0, 0, 0.85) !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-table-column-sorters {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
2026-01-07 17:38:57 +08:00
|
|
|
}
|