66 lines
1.4 KiB
Plaintext
66 lines
1.4 KiB
Plaintext
/* naive ui 部分样式调整*/
|
|
/*表格排序图标颜色问题 */
|
|
.n-data-table-sorter{
|
|
color: #fff!important;
|
|
}
|
|
|
|
/*表格头多选框颜色调整避免和表头颜色冲突*/
|
|
.n-data-table-thead .n-data-table-tr .n-checkbox-box{
|
|
background: #fff;
|
|
.n-checkbox-icon{
|
|
.check-icon{
|
|
fill:#462AA0 ;
|
|
}
|
|
svg{
|
|
fill:#462AA0 ;
|
|
}
|
|
}
|
|
.n-checkbox-box__border{
|
|
border: #fff!important;
|
|
}
|
|
}
|
|
/*弹窗内表格背景颜色调整*/
|
|
.n-data-table .n-data-table-th {
|
|
background-color: #462AA0;
|
|
}
|
|
/*
|
|
naive ui 消息提示框 样式调整
|
|
*/
|
|
.n-message-wrapper{
|
|
.n-message{
|
|
&.n-message--info-type{
|
|
border: 1px solid #C7DFFB;
|
|
background-color: #EDF5FE;
|
|
}
|
|
&.n-message--warning-type{
|
|
border: 1px solid #FAE0B5;
|
|
background-color: #FEF7ED;
|
|
}
|
|
&.n-message--error-type{
|
|
border: 1px solid #F3CBD3;
|
|
background-color:#FBEEF1;
|
|
}
|
|
&.n-message--success-type{
|
|
border: 1px solid #C5E7D5;
|
|
background-color:#EDF7F2;
|
|
}
|
|
&.n-message--loading-type{
|
|
border: 1px solid #B2A6D6;
|
|
background-color:#EDF7F2;
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
n-image 图片放大查看器工具栏样式调整 样式污染问题
|
|
*/
|
|
.n-base-icon{
|
|
box-sizing: initial!important;
|
|
}
|
|
/*表格排序列背景颜色问题*/
|
|
.n-data-table .n-data-table-th.n-data-table-th--sortable{
|
|
background-color: #462AA0;
|
|
}
|
|
.n-data-table .n-data-table-th.n-data-table-th--sortable:hover{
|
|
background-color: #462AA0;
|
|
}
|