feat: SBOM列表

This commit is contained in:
汪少伟
2025-03-15 12:37:16 +08:00
parent 1efb34722f
commit e864fa32f1
5 changed files with 138 additions and 25 deletions

View File

@@ -289,10 +289,10 @@ button.devui-button--solid--secondary {
padding: 3px 0;
}
.devui-checkbox__label-text {
font-size: 16px;
font-size: 14px;
}
.devui-radio.devui-radio--md span .devui-radio__label {
font-size: 16px;
font-size: 14px;
}
.devui-radio-group div.devui-radio__wrapper {
height: auto;

View File

@@ -16,13 +16,15 @@ body,
height: 100%;
-webkit-font-smoothing: antialiased;
// scorll 事件失效 overflow-y: overlay
// devUI 主题颜色重置
--devui-text: rgb(25, 25, 25);
}
html {
overflow-y: scroll; // html本身没有滚动 为了防止自定义滚动条出现时界面抖动,需要预留轨道
}
html body {
//background-color: $devui-global-bg;
background-color: #F6F6F8;
background-color: #f6f6f8;
font-size: var(--text-sm);
color: var(--color-font);
@@ -126,15 +128,17 @@ textarea::placeholder {
}
}
/* 滚动条样式自定义 */
body::-webkit-scrollbar, body>* ::-webkit-scrollbar {
body::-webkit-scrollbar,
body > * ::-webkit-scrollbar {
width: 6px;
height: 4px;
}
body::-webkit-scrollbar-thumb, body>* ::-webkit-scrollbar-thumb {
body::-webkit-scrollbar-thumb,
body > * ::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: var(--devui-disabled-text);
&:hover{
background-color: var(--devui-placeholder)
&:hover {
background-color: var(--devui-placeholder);
}
}
body::-webkit-scrollbar-track {
@@ -188,12 +192,16 @@ body::-webkit-scrollbar-corner {
}
/* 自动补全输入框 去掉hover效果*/
.devui-auto-complete-input__wrapper:not(.devui-auto-complete--disabled):not(.devui-auto-complete-input__wrapper--error):hover {
.devui-auto-complete-input__wrapper:not(.devui-auto-complete--disabled):not(
.devui-auto-complete-input__wrapper--error
):hover {
border-color: var(--devui-line, #d7d8da);
}
/* 可输入下拉选择框 去掉hover效果*/
.devui-editable-select-input__wrapper:not(.devui-editable-select-input__wrapper--disabled):not(.devui-editable-select-input__wrapper--focus):hover {
.devui-editable-select-input__wrapper:not(.devui-editable-select-input__wrapper--disabled):not(
.devui-editable-select-input__wrapper--focus
):hover {
border-color: var(--devui-line, #d7d8da);
}
@@ -216,7 +224,10 @@ body::-webkit-scrollbar-corner {
}
/* 时间范围选择 去掉hover效果 */
.devui-range-date-picker-pro .devui-range-date-picker-pro__range-picker:not(.devui-range-date-picker-pro--error):not(.devui-range-date-picker-pro--disabled):hover {
.devui-range-date-picker-pro
.devui-range-date-picker-pro__range-picker:not(.devui-range-date-picker-pro--error):not(
.devui-range-date-picker-pro--disabled
):hover {
border-color: var(--devui-line, #d7d8da);
}
@@ -356,16 +367,20 @@ body::-webkit-scrollbar-corner {
}
input {
background-color:transparent !important;
background-color: transparent !important;
// appearance: none;
&:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
&:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-text-fill-color: inherit !important;
background-color: transparent !important;
background-image: none;
transition: background-color 36000s ease-in-out 0s; //背景色透明 生效时长 过渡效果 启用时延迟的时间
}
&:-moz-autofill, textarea:-moz-autofill, select:-moz-autofill {
&:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
-webkit-text-fill-color: inherit !important;
background-color: transparent !important;
background-image: none;
@@ -385,8 +400,6 @@ input {
}
}
.g-content-card-v2 {
background-color: $devui-global-bg;
border-radius: $devui-border-radius-card;
@@ -424,7 +437,7 @@ input {
height: 1px;
width: 100%;
background: var(--devui-dividing-line);
margin: 32px 0
margin: 32px 0;
}
.g-tip-text {
@@ -434,7 +447,7 @@ input {
}
// 新版设计统一设置标题样式 大小颜色行高
.unify-settingTitle-title{
.unify-settingTitle-title {
font-weight: 700;
line-height: 34px;
font-size: 24px;
@@ -447,14 +460,16 @@ input {
}
// 下拉框动效
.arrow-down{
transition: transform var(--devui-animation-duration-slow, .3s) var(--devui-animation-ease-in-out-smooth, cubic-bezier(.645, .045, .355, 1));
.arrow-down {
transition: transform var(--devui-animation-duration-slow, 0.3s)
var(--devui-animation-ease-in-out-smooth, cubic-bezier(0.645, 0.045, 0.355, 1));
transform-origin: center;
transform: rotateZ(0deg) !important;
}
.arrow-up{
transition: transform var(--devui-animation-duration-slow, .3s) var(--devui-animation-ease-in-out-smooth, cubic-bezier(.645, .045, .355, 1));
.arrow-up {
transition: transform var(--devui-animation-duration-slow, 0.3s)
var(--devui-animation-ease-in-out-smooth, cubic-bezier(0.645, 0.045, 0.355, 1));
transform-origin: center;
transform: rotateZ(180deg) !important;
}