| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- // 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;
- }
- // 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;
- }
- }
- // to fix el-date-picker css style
- .el-range-separator {
- box-sizing: content-box;
- }
- .b-shop-rate {
- .el-form-item__content {
- div {
- line-height: 51px;
- }
- }
- }
- .amap-marker {
- img {
- width: 19px !important;
- height: 32px !important;
- }
- }
- .dashboardPage {
- .el-table {
- &::before {
- display: none !important;
- }
- }
- .cell {
- height: 40px !important;
- line-height: 40px;
- // display: flex;
- // align-items: center;
- }
- .el-table__cell {
- padding: 0 !important;
- border-bottom: none !important;
- }
- .el-table__header-wrapper {
- .el-table__cell {
- background-color: #f7f8fa !important;
- border-radius: 4px;
- }
- }
- .el-tabs__item {
- height: 62px !important;
- line-height: 62px !important;
- color: #8c8c8c;
- font-size: 20px;
- &.is-active {
- font-weight: 600;
- color: #3d3d3d;
- }
- }
- .el-tabs__active-bar {
- width: 24px !important;
- margin-left: 18px;
- height: 4px;
- background-color: #495fff;
- }
- .el-tabs__nav-wrap {
- &::after {
- height: 1px !important;
- }
- }
- .el-select {
- .el-input__inner {
- background-color: #F7F8FA;
- border: none;
- }
- }
- }
|