| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- [class*='g-image'] {
- position: relative;
- object-fit: cover;
- overflow: hidden;
- &:before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: url("~@pc/assets/images/avatar.png") no-repeat center;
- background-size: cover;
- }
- }
- .g-price-up {
- color: #ff3333;
- }
- .g-price-normal {
- color: #333333;
- }
- .g-price-down {
- color: #0baf1f;
- }
- .el-form {
- &-item:last-child {
- margin-bottom: 0;
- }
- }
- .el-popper {
- &.is-light {
- border: 0;
- }
- .el-menu {
- border-radius: 4px;
- box-shadow: 0 2px 30px 0 rgba(0, 0, 0, .15);
- &--popup {
- min-width: 160px;
- }
- &--vertical {
- .el-menu {
- &-item {
- height: 44px;
- line-height: 44px;
- color: #666;
- &.is-active {
- color: var(--sidebar-menu-item-active);
- }
- }
- }
- }
- }
- }
- .el-dropdown-menu {
- padding: 10px 0;
- &__item {
- line-height: 36px;
- padding: 0 20px;
- }
- }
|