File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,14 +76,14 @@ $animation_speed: .3s !default;
7676 }
7777
7878 > .ui-resizable-ne {
79- @include vendor (transform , translate ( 0 , 10 px ) rotate (45deg ));
79+ @include vendor (transform , rotate (45deg ));
8080 }
8181 > .ui-resizable-sw {
8282 @include vendor (transform , rotate (45deg ));
8383 }
8484
8585 > .ui-resizable-nw {
86- @include vendor (transform , translate ( 0 , 10 px ) rotate (-45deg ));
86+ @include vendor (transform , rotate (-45deg ));
8787 }
8888 > .ui-resizable-se {
8989 @include vendor (transform , rotate (-45deg ));
Original file line number Diff line number Diff line change @@ -1615,10 +1615,10 @@ export class GridStack {
16151615 // resize handles offset (to match margin)
16161616 Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-n` , `top: ${ top } ;` ) ;
16171617 Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-s` , `bottom: ${ bottom } ` ) ;
1618- Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-ne` , `right: ${ right } ` ) ;
1618+ Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-ne` , `right: ${ right } ; top: ${ top } ` ) ;
16191619 Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-e` , `right: ${ right } ` ) ;
16201620 Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-se` , `right: ${ right } ; bottom: ${ bottom } ` ) ;
1621- Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-nw` , `left: ${ left } ` ) ;
1621+ Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-nw` , `left: ${ left } ; top: ${ top } ` ) ;
16221622 Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-w` , `left: ${ left } ` ) ;
16231623 Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-sw` , `left: ${ left } ; bottom: ${ bottom } ` ) ;
16241624 }
You can’t perform that action at this time.
0 commit comments