13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// In classic, the side handles are full width and background position is at start of the dimension;
.#{$prefix}resizable-over,
.#{$prefix}resizable-pinned {
    .#{$prefix}resizable-handle-east,
    .#{$prefix}resizable-handle-west {
        background-position: left;
    }
    
    .#{$prefix}resizable-handle-south,
    .#{$prefix}resizable-handle-north {
        background-position: top;
    }
 
    .#{$prefix}resizable-handle-southeast {
        background-position: top left;
    }
    
    .#{$prefix}resizable-handle-northwest {
        background-position: bottom right;
    }
    
    .#{$prefix}resizable-handle-northeast {
        background-position: bottom left;
    }
 
    .#{$prefix}resizable-handle-southwest {
        background-position: top right;
    }
}