1
13693261870
2022-09-16 06df9667ad1465622bf0e423dc3840ef9f93c725
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
30
31
32
33
34
.#{$prefix}resizable-handle {
    background-color: $panel-body-border-color;
    background-repeat: no-repeat;
}
 
// In neptune, the side handles are 1px width and background position is at centre of the dimension;
.#{$prefix}resizable-over,
.#{$prefix}resizable-pinned {
    .#{$prefix}resizable-handle-east,
    .#{$prefix}resizable-handle-west {
        background-position: center;
    }
    
    .#{$prefix}resizable-handle-south,
    .#{$prefix}resizable-handle-north {
        background-position: center;
    }
 
    .#{$prefix}resizable-handle-southeast {
        background-position: -2px -2px;
    }
    
    .#{$prefix}resizable-handle-northwest {
        background-position: 2px 2px;
    }
    
    .#{$prefix}resizable-handle-northeast {
        background-position: -2px 2px;
    }
 
    .#{$prefix}resizable-handle-southwest {
        background-position: 2px -2px;
    }
}