123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- // 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;
- }
- .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;
- }
- .el-menu--collapse>div>.el-submenu>.el-submenu__title .el-submenu__icon-arrow {
- display: none;
- }
- .el-dropdown .el-dropdown-link {
- color: var(--el-color-primary) !important;
- }
- .el-form .el-form-item__label {
- font-weight: 400 !important;
- }
- .el-dialog {
- background: #EEEEEE !important;
- }
- .el-dialog__header {
- background: #EEEEEE;
- padding-bottom: 14px;
- }
- .el-dialog__body {
- background: #fff;
- // padding: 20px 30px !important;
- }
- .el-dialog__footer {
- background: #fff;
- text-align: center !important;
- padding: 40px 0;
- }
- .el-loading-mask {
- z-index: 1000 !important;
- }
- .el-form-item {
- // padding: 0!important;
- margin-bottom: 22px !important;
- }
- .margin-b-0.el-form-item {
- margin-bottom: 0px !important;
- }
- .wid100.el-form-item {
- width: 100% !important;
- }
- .el-form-item__label {
- // height: 22px !important;
- }
- .el-tree-node__content {
- height: 40px !important;
- font-size: 12px !important;
- color: #666 !important;
- }
- .el-tree-node:focus>.el-tree-node__content {
- background-color: #EFF6FF !important;
- }
- .is-current {
- background-color: #EFF6FF !important;
- }
- .el-input__wrapper {
- border-radius: 1px !important;
- }
- .el-input.is-disabled .el-input__wrapper {
- background: #fff !important;
- // border: none !important;
- // box-shadow: none;
- box-shadow: 0 0 0 1px #f1f1f1 inset !important;
- }
- .el-input.is-disabled .el-input__inner {
- -webkit-text-fill-color: #606266 !important;
- color: #606266 !important;
- }
- .el-textarea.is-disabled .el-textarea__inner {
- background: #fff !important;
- -webkit-text-fill-color: #606266 !important;
- color: #606266 !important;
- // border: none !important;
- // box-shadow: none;e7e8e9
- box-shadow: 0 0 0 1px #f1f1f1 inset !important;
- }
- .el-upload--picture-card {
- width: 80px !important;
- height: 80px !important;
- }
- .el-upload-list--picture-card .el-upload-list__item {
- width: 80px !important;
- height: 80px !important;
- }
- .el-upload-list--text .el-upload-list__item {
- min-width: 200px !important;
- width: auto;
- }
- .el-input-number .el-input__inner {
- text-align: left !important;
- }
|