first commit
This commit is contained in:
@@ -0,0 +1,736 @@
|
||||
[v-cloak] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ie-must-go-die {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container {
|
||||
position: absolute;
|
||||
top: 40%;
|
||||
left: 33%;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container h1 {
|
||||
font-size: 28px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container p {
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container a {
|
||||
display: block;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.ie-must-go-die .ie-container a:visited {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.button-delete-color {
|
||||
color: #da3e16;
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
column-gap: 50px;
|
||||
row-gap: 10px;
|
||||
}
|
||||
|
||||
.search .search-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
width: calc((100%) / 4.5);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.search .search-query {
|
||||
/*width: 160px;*/
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
/*padding-left: 30px;*/
|
||||
}
|
||||
|
||||
.search .search-item:not(:last-child) {
|
||||
/*padding-right: 40px;*/
|
||||
}
|
||||
|
||||
.search .search-item-label {
|
||||
color: rgb(100, 100, 100);
|
||||
margin-right: 10px;
|
||||
width: 90px;
|
||||
min-width: 90px;
|
||||
overflow: hidden;
|
||||
/*text-align: right;*/
|
||||
/*font-weight: bold;*/
|
||||
}
|
||||
|
||||
.search .search-item-option {
|
||||
min-width: calc(100% - 90px - 10px);
|
||||
overflow: hidden;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.search .search-item-option > * {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1900px) {
|
||||
.search .search-item {
|
||||
width: calc((100% - 60px) / 4);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1350px) {
|
||||
.search .search-item {
|
||||
width: calc((100% - 40px) / 3);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1200px) {
|
||||
.search .search-item {
|
||||
width: calc((100% - 20px) / 2);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
.search .search-item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.search .search-item:not(:last-child) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Text Color Variant
|
||||
*
|
||||
*/
|
||||
.text-primary,
|
||||
.text-primary a {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.text-primary:focus,
|
||||
.text-primary a:focus {
|
||||
color: var(--color-primary-6);
|
||||
}
|
||||
|
||||
.text-default,
|
||||
.text-default a {
|
||||
color: #eaecf6;
|
||||
}
|
||||
|
||||
.text-default:focus,
|
||||
.text-default a:focus {
|
||||
color: #b4bcdf;
|
||||
}
|
||||
|
||||
.text-warning,
|
||||
.text-warning a {
|
||||
color: #daac16;
|
||||
}
|
||||
|
||||
.text-warning:focus,
|
||||
.text-warning a:focus {
|
||||
color: #95750f;
|
||||
}
|
||||
|
||||
.text-success,
|
||||
.text-success a {
|
||||
color: #15db81;
|
||||
}
|
||||
|
||||
.text-success:focus,
|
||||
.text-success a:focus {
|
||||
color: #0e9558;
|
||||
}
|
||||
|
||||
.text-info,
|
||||
.text-info a {
|
||||
color: #15acdc;
|
||||
}
|
||||
|
||||
.text-info:focus,
|
||||
.text-info a:focus {
|
||||
color: #0e7596;
|
||||
}
|
||||
|
||||
.text-white,
|
||||
.text-white a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.text-white:focus,
|
||||
.text-white a:focus {
|
||||
color: #d9d9d9;
|
||||
}
|
||||
|
||||
.text-danger,
|
||||
.text-danger a {
|
||||
color: #da3e16;
|
||||
}
|
||||
|
||||
.text-danger:focus,
|
||||
.text-danger a:focus {
|
||||
color: #952a0f;
|
||||
}
|
||||
|
||||
.text-muted,
|
||||
.text-muted a {
|
||||
color: #b3b3b3;
|
||||
}
|
||||
|
||||
.text-muted:focus,
|
||||
.text-muted a:focus {
|
||||
color: #8c8c8c;
|
||||
}
|
||||
|
||||
|
||||
.flx {
|
||||
display: flex
|
||||
}
|
||||
|
||||
.flx-between {
|
||||
display: flex;
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
.flx-center, .flx-center-between {
|
||||
display: flex;
|
||||
align-items: center
|
||||
}
|
||||
|
||||
.flx-center-between {
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
.flx-center-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center
|
||||
}
|
||||
|
||||
.flx-between-column {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.pointer, .pointer-hover {
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
/* Margins */
|
||||
.no-m {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.mn {
|
||||
margin-right: -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
.mrn {
|
||||
margin-right: -15px;
|
||||
}
|
||||
|
||||
.mln {
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
.mbn {
|
||||
margin-bottom: -15px;
|
||||
}
|
||||
|
||||
.ml0 {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.mr0 {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.mt0 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mb0 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.m25 {
|
||||
margin: 25px;
|
||||
}
|
||||
|
||||
.mr25 {
|
||||
margin-right: 25px;
|
||||
}
|
||||
|
||||
.ml25 {
|
||||
margin-left: 25px;
|
||||
}
|
||||
|
||||
.mt25 {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.mb25 {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.m20 {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.mr20 {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.ml20 {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mt20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.mb20 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.m15 {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.mr15 {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.ml15 {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.mt15 {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mb15 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.m10 {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.mr10 {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.ml10 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.mt10 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.mb10 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.m5 {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.mr5 {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.ml5 {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.mt5 {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.mb5 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Padding space */
|
||||
.no-p {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.pl0 {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pr0 {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pt0 {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.pb0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.p50 {
|
||||
padding: 50px;
|
||||
}
|
||||
|
||||
.pr50 {
|
||||
padding-right: 50px;
|
||||
}
|
||||
|
||||
.pl50 {
|
||||
padding-left: 50px;
|
||||
}
|
||||
|
||||
.pt50 {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.pb50 {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.p25 {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.pr25 {
|
||||
padding-right: 25px;
|
||||
}
|
||||
|
||||
.pl25 {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
.pt25 {
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.pb25 {
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
.p20 {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.pr20 {
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
.pl20 {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.pt20 {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.pb20 {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.p15 {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.pr15 {
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.pl15 {
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.pt15 {
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.pb15 {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
.p10 {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.pr10 {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.pl10 {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.pt10 {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.pb10 {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.p5 {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.pr5 {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.pl5 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.pt5 {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.pb5 {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Borders */
|
||||
.no-b {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
td.no-b {
|
||||
border-top: 0 !important;
|
||||
}
|
||||
|
||||
.bordered {
|
||||
border: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.bb {
|
||||
border-bottom: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.bt {
|
||||
border-top: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.bl {
|
||||
border-left: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.br {
|
||||
border-right: 1px solid #e3e6f3;
|
||||
}
|
||||
|
||||
.el-transfer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.el-transfer__buttons {
|
||||
/*width: 200px;*/
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.el-transfer-panel {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.appCenterPopover {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.appCenterCard {
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.appCenterCard .el-card__header {
|
||||
padding: 8px 10px !important;
|
||||
}
|
||||
|
||||
.appCenterCard .entranceDetail {
|
||||
border-radius: 6px !important;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
line-height: 1;
|
||||
color: #606060;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.entranceDetail:hover,
|
||||
.entranceDetail-selected {
|
||||
background-color: #e5edff;
|
||||
color: #3177fd;
|
||||
}
|
||||
|
||||
.appCenterCard .entranceIcon {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin: 8px auto 6px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.appCenterCard .entranceDetail a {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
|
||||
.process-task-record .el-descriptions__header {
|
||||
margin: 0;
|
||||
/*border: 1px solid var(--border-color-lighter);*/
|
||||
border-bottom: 0;
|
||||
padding: 10px 5px;
|
||||
/*background: var(--table-header-background-color);*/
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.process-task-record .el-descriptions__header .el-descriptions__title {
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.process-task-record .el-descriptions {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.process-title {
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
margin: 25px 0 10px 0;
|
||||
padding-left: 10px;
|
||||
position: relative;
|
||||
line-height: 1.1;
|
||||
font-family: inherit;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.process-title::before {
|
||||
content: "";
|
||||
width: 5px;
|
||||
background: var(--color-primary);
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.signature-image {
|
||||
height: 100px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-box {
|
||||
width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.left-span-label {
|
||||
border-left: 4px solid var(--color-primary);
|
||||
font-size: 15px;
|
||||
color: var(--color-black);
|
||||
font-weight: 600;
|
||||
padding-left: 8px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
/**********start****************设置工作流表单el-description嵌套el-form的格式 必须要使用flow-task-form!!!***********************start*****************/
|
||||
|
||||
.flow-task-form .el-descriptions__table {
|
||||
table-layout: fixed !important;
|
||||
}
|
||||
|
||||
.flow-task-form .el-form-item .el-form-item__label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions-item__label.is-bordered-label {
|
||||
background: rgb(248, 249, 250) !important;
|
||||
padding: 8px 12px !important;
|
||||
/*border: 1px solid rgb(221, 221, 221) !important;*/
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions .is-bordered .el-descriptions-item__cell {
|
||||
border: 1px solid rgb(221, 221, 221) !important;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions-item__content {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
||||
.flow-task-form .el-form-item .el-form-item__content > div {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.flow-task-form .el-descriptions-item__cell.el-descriptions-item__content .el-form-item {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
/**********start****************设置工作流表单el-description嵌套el-form的格式 必填项加星号***********************start*****************/
|
||||
.flow-task-form th.el-descriptions-item__label:has(+ td.el-descriptions-item__content > div.el-form-item.is-required):before {
|
||||
content: "*";
|
||||
color: #ff0202;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
/**/
|
||||
|
||||
.flow-task-form .el-form-item input, .flow-task-form .el-form-item textarea, .flow-task-form .el-form-item .el-radio.is-bordered {
|
||||
/*border: none;*/
|
||||
border-radius: unset;
|
||||
border: 1px solid rgb(221, 221, 221);
|
||||
}
|
||||
|
||||
.flow-task-form .el-form-item .el-radio.is-bordered {
|
||||
border: 1px solid rgb(221, 221, 221);
|
||||
}
|
||||
|
||||
.flow-task-form .el-form-item .el-radio.is-bordered.is-checked {
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
|
||||
.flow-task-form .el-form-item .el-date-editor {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/*********END********设置工作流表单el-description嵌套el-form的格式**************************END*********/
|
||||
|
||||
.el-form-item .form-item-tooltip {
|
||||
color: rgb(153, 153, 153);
|
||||
font-size: 13px;
|
||||
display: block;
|
||||
}
|
||||
Reference in New Issue
Block a user