| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .picture-editor-wrap_layer {
- position: absolute;
- top: 0px;
- left: 100% ;
- margin-left: 10px;
- bottom: 0px;
- z-index: 10;
- width: 120px;
- background: #535353;
- padding: 10px;
- padding-right: 0px;
- padding-top: 0px;
- border-radius: 5px;
- overflow: auto;
- &~.picture-editor-wrap_edit {
- right: -440px;
- }
- &:before {
- content: "";
- width: 100%;
- height: 10px;
- display: block;
- background: #535353;
- position:sticky;
- top:0;
- z-index: 10;
- }
- .item {
- width: 102px;
- height: 102px;
- margin-bottom: 10px;
- border: 1px solid #ddd;
- &.active {
- border: 1px solid $primary2;
- box-shadow: 0 0 5px $primary2 ;
- }
- &.save-image {
- border: 1px #535353 dashed;
- font-size: 14px;
- background: url('~@/assets/images/bg-image.png') #535353;
- background-size: 12px 12px;
- color: #EEEEEE;
- cursor: pointer;
- margin-top: 0;
- position: sticky;
- top:10px;
- z-index: 10;
- .el-icon-plus {
- color: #eee;
- }
- &:hover {
- border: 1px #6f6f6f dashed;
- }
- &.disabled {
- opacity: .4;
- cursor: not-allowed;
- border: 1px #535353 dashed;
- box-shadow: none;
- }
- }
- img {
- object-fit: contain;
- width: 100px;
- height: 100px;
- }
- }
- .matting {
- // position: absolute;
- // visibility: hidden;
- }
- }
|