parent
a74f669ed8
commit
1e33e322ab
9 changed files with 281 additions and 319 deletions
@ -0,0 +1,82 @@ |
|||||||
|
.nf-theme-custom { |
||||||
|
//google chrome explore |
||||||
|
-webkit-print-color-adjust: exact; |
||||||
|
//firefox explore |
||||||
|
-moz-print-color-adjust: exact; |
||||||
|
color-adjust: exact; |
||||||
|
|
||||||
|
.nf-form--detail { |
||||||
|
.el-row { |
||||||
|
border-top: var(--borderWidth) solid var(--borderColor); |
||||||
|
border-left: var(--borderWidth) solid var(--borderColor); |
||||||
|
} |
||||||
|
|
||||||
|
.el-col { |
||||||
|
border-bottom: var(--borderWidth) solid var(--borderColor); |
||||||
|
border-right: var(--borderWidth) solid var(--borderColor); |
||||||
|
} |
||||||
|
|
||||||
|
.el-form-item__label { |
||||||
|
// width: var(--labelWidth); |
||||||
|
padding: 0 10px; |
||||||
|
color: var(--labelColor); |
||||||
|
font-size: var(--labelFontSize, 14px); |
||||||
|
border-right: var(--borderWidth) solid var(--borderColor); |
||||||
|
background-color: var(--labelBg); |
||||||
|
box-sizing: border-box; |
||||||
|
} |
||||||
|
|
||||||
|
.el-form-item__content { |
||||||
|
box-sizing: border-box; |
||||||
|
background-color: #fff; |
||||||
|
} |
||||||
|
|
||||||
|
.hover-row td { |
||||||
|
background-color: #fff !important; |
||||||
|
} |
||||||
|
|
||||||
|
.el-input.is-disabled .el-input__inner, |
||||||
|
.el-textarea.is-disabled .el-textarea__inner, |
||||||
|
.el-range-editor.is-disabled, |
||||||
|
.el-range-editor.is-disabled input { |
||||||
|
color: var(--valueColor) !important; |
||||||
|
-webkit-text-fill-color: var(--valueColor) !important; |
||||||
|
font-size: var(--valueFontSize); |
||||||
|
background-color: #fff; |
||||||
|
cursor: default; |
||||||
|
} |
||||||
|
|
||||||
|
.nf-checkbox__all, |
||||||
|
.el-input__suffix, |
||||||
|
.el-input-number__decrease, |
||||||
|
.el-input-number__increase, |
||||||
|
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before, |
||||||
|
.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.el-input-group__append, |
||||||
|
.el-input-group__prepend { |
||||||
|
background-color: transparent; |
||||||
|
border: none; |
||||||
|
} |
||||||
|
|
||||||
|
.el-input__inner, |
||||||
|
.el-textarea__inner { |
||||||
|
border: none; |
||||||
|
|
||||||
|
&::-moz-placeholder, |
||||||
|
&::-moz-placeholder, |
||||||
|
&::-ms-input-placeholder, |
||||||
|
&::-webkit-input-placeholder, |
||||||
|
&::-ms-input-placeholder { |
||||||
|
color: transparent !important; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.el-tag { |
||||||
|
margin-left: 0 !important; |
||||||
|
margin-right: 6px !important; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
@ -1,63 +0,0 @@ |
|||||||
// form - border |
|
||||||
.nf-theme-blue { |
|
||||||
//google chrome explore |
|
||||||
-webkit-print-color-adjust: exact; |
|
||||||
//firefox explore |
|
||||||
-moz-print-color-adjust: exact; |
|
||||||
color-adjust: exact; |
|
||||||
|
|
||||||
.nf-form--detail { |
|
||||||
|
|
||||||
.nf-form__group, |
|
||||||
.nf-form__row { |
|
||||||
border: 1px solid #cbdcf0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-col { |
|
||||||
border: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-col:nth-child(1) { |
|
||||||
border-top: 1px solid #cbdcf0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-row { |
|
||||||
border: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item>.el-form-item__content { |
|
||||||
border-left: 1px solid #cbdcf0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-table__row .el-form-item__content { |
|
||||||
border-left: none !important; |
|
||||||
} |
|
||||||
|
|
||||||
.nf-form__row { |
|
||||||
margin-bottom: 0px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item { |
|
||||||
margin-bottom: 0px !important; |
|
||||||
background: #eef6ff !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__label { |
|
||||||
color: #01418a !important; |
|
||||||
text-align: center !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input.is-disabled .el-input__inner, |
|
||||||
.el-range-editor.is-disabled, |
|
||||||
.el-textarea.is-disabled .el-textarea__inner { |
|
||||||
border: 1px solid transparent; |
|
||||||
background: #fff; |
|
||||||
background-color: #fff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input-number.is-disabled .el-input-number__decrease, |
|
||||||
.el-input-number.is-disabled .el-input-number__increase { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
@ -1,47 +0,0 @@ |
|||||||
// form - border |
|
||||||
.nf-theme-border { |
|
||||||
//google chrome explore |
|
||||||
-webkit-print-color-adjust: exact; |
|
||||||
//firefox explore |
|
||||||
-moz-print-color-adjust: exact; |
|
||||||
color-adjust: exact; |
|
||||||
|
|
||||||
.nf-form--detail { |
|
||||||
.nf-form__group, |
|
||||||
.nf-form__row { |
|
||||||
border: 1px solid #333 !important; |
|
||||||
} |
|
||||||
.el-form-item > .el-form-item__content { |
|
||||||
border-left: 2px solid #333 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-table__row .el-form-item__content { |
|
||||||
border-left: none !important; |
|
||||||
} |
|
||||||
|
|
||||||
.nf-form__row { |
|
||||||
margin-bottom: 0px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item { |
|
||||||
margin-bottom: 0px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__label { |
|
||||||
text-align: center !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input.is-disabled .el-input__inner, |
|
||||||
.el-range-editor.is-disabled, |
|
||||||
.el-textarea.is-disabled .el-textarea__inner { |
|
||||||
border: 1px solid transparent; |
|
||||||
background: #fff; |
|
||||||
background-color: #fff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input-number.is-disabled .el-input-number__decrease, |
|
||||||
.el-input-number.is-disabled .el-input-number__increase { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
@ -1,161 +0,0 @@ |
|||||||
.nf-theme-default { |
|
||||||
//google chrome explore |
|
||||||
-webkit-print-color-adjust: exact; |
|
||||||
//firefox explore |
|
||||||
-moz-print-color-adjust: exact; |
|
||||||
color-adjust: exact; |
|
||||||
|
|
||||||
.nf-form--detail { |
|
||||||
.el-col { |
|
||||||
margin-bottom: 0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.hover-row td { |
|
||||||
background-color: #fff !important; |
|
||||||
} |
|
||||||
|
|
||||||
.nf-group__header { |
|
||||||
padding-left: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
.el-collapse-item__header { |
|
||||||
margin-bottom: 0; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input.is-disabled .el-input__inner, |
|
||||||
.el-textarea.is-disabled .el-textarea__inner, |
|
||||||
.el-range-editor.is-disabled, |
|
||||||
.el-range-editor.is-disabled input { |
|
||||||
color: #606266; |
|
||||||
background-color: #fff; |
|
||||||
padding-left: 0; |
|
||||||
cursor: default; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input-number__decrease, |
|
||||||
.el-input-number__increase { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input-group__append, |
|
||||||
.el-input-group__prepend { |
|
||||||
background-color: transparent; |
|
||||||
border: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input__suffix { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-input__inner, |
|
||||||
.el-textarea__inner { |
|
||||||
border: none; |
|
||||||
|
|
||||||
&::-webkit-input-placeholder { |
|
||||||
color: transparent !important; |
|
||||||
} |
|
||||||
|
|
||||||
&::-moz-placeholder { |
|
||||||
color: transparent !important; |
|
||||||
} |
|
||||||
|
|
||||||
&::-moz-placeholder { |
|
||||||
color: transparent !important; |
|
||||||
} |
|
||||||
|
|
||||||
&::-ms-input-placeholder { |
|
||||||
color: transparent !important; |
|
||||||
} |
|
||||||
|
|
||||||
&::-ms-input-placeholder { |
|
||||||
color: transparent !important; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.nf-checkbox__all { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner { |
|
||||||
background-color: #409eff; |
|
||||||
border-color: #409eff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after { |
|
||||||
border-color: #fff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-radio__input.is-disabled.is-checked .el-radio__inner { |
|
||||||
background-color: #409eff; |
|
||||||
border-color: #409eff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-radio__input.is-disabled.is-checked .el-radio__inner::after { |
|
||||||
background-color: #fff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-checkbox__input.is-disabled+span.el-checkbox__label, |
|
||||||
.el-radio__input.is-disabled+span.el-radio__label { |
|
||||||
color: #606266; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before, |
|
||||||
.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.el-row { |
|
||||||
border-top: 1px solid #ebeef5; |
|
||||||
border-left: 1px solid #ebeef5; |
|
||||||
} |
|
||||||
|
|
||||||
.el-col { |
|
||||||
padding: 0 !important; |
|
||||||
border-bottom: 1px solid #ebeef5; |
|
||||||
border-right: 1px solid #ebeef5; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item { |
|
||||||
margin: 0; |
|
||||||
background: #fafafa; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__label, |
|
||||||
.el-form-item__content { |
|
||||||
padding: 2px 0; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__label { |
|
||||||
padding: 0 10px; |
|
||||||
color: #909399; |
|
||||||
box-sizing: border-box; |
|
||||||
} |
|
||||||
|
|
||||||
.el-tag { |
|
||||||
margin-left: 0 !important; |
|
||||||
margin-right: 6px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__content { |
|
||||||
border-left: 1px solid #ebeef5; |
|
||||||
padding-left: 20px; |
|
||||||
box-sizing: border-box; |
|
||||||
background-color: #fff; |
|
||||||
} |
|
||||||
|
|
||||||
&__column { |
|
||||||
.el-form-item { |
|
||||||
background-color: #fff; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__label { |
|
||||||
padding-right: 12px; |
|
||||||
} |
|
||||||
|
|
||||||
.el-form-item__content { |
|
||||||
padding-left: 0; |
|
||||||
border-left: none; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
Loading…
Reference in new issue