// cover some element-ui styles .el-breadcrumb__inner, .el-breadcrumb__inner a { font-weight: 400 !important; } .el-upload { input[type="file"] { display: none !important; } } .el-upload__input { display: none; } // this.confirm删除确认框修改确定取消按钮顺序 .el-message-box__btns { display: flex; flex-direction: row-reverse; justify-content: center; align-items: center; gap: 65px; padding: 0; } //警告提示信息 .el-message-box { width: calc(100vw * (480 / 1920)); height: calc(100vh * (280 / 1080)); background: url(../assets/img/Group-585.png); background-size: calc(100vw * (480 / 1920)) calc(100vh * (280 / 1080)); padding-top: calc(100vh * (20 / 1080)); padding-left: calc(100vw * (20 / 1920)); padding-right: calc(100vw * (20 / 1920)); border: none; } .el-button{ color: #ffffff; } .el-message-box__title{ color: white; } .el-message-box__headerbtn{ border: 1px solid #02C2E3FF; border-radius: 50%; } .el-message-box__headerbtn .el-message-box__close{ color: #02C2E3FF; } .el-message-box__headerbtn .el-message-box__close:hover{ color: #02C2E3FF; } .el-message-box__message p { color: white; } //前面的感叹号处理 .el-message-box__status.el-icon-warning{ color: transparent; } //下面按钮 .el-button--small{ background-color: #1E5095FF !important; border-color: #02C2E3FF !important; } .el-button--small:hover{ color: #ffffff; } .cell { .el-tag { margin-right: 0px; } } .small-padding { .cell { padding-left: 5px; padding-right: 5px; } } .fixed-width { .el-button--mini { padding: 7px 10px; width: 60px; } } .status-col { .cell { padding: 0 10px; text-align: center; .el-tag { margin-right: 0px; } } } // to fixed https://github.com/ElemeFE/element/issues/2461 .el-dialog { transform: none; left: 0; position: relative; margin: 0 auto; } // refine element ui upload .upload-container { .el-upload { width: 100%; .el-upload-dragger { width: 100%; height: 200px; } } } // dropdown .el-dropdown-menu { a { display: block } } // fix date-picker ui bug in filter-item .el-range-editor.el-input__inner { display: inline-flex !important; } // to fix el-date-picker css style .el-range-separator { box-sizing: content-box; }