From 9e7220c13368ba038af7502b14317ab51fab35cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Fatay=20=C3=87ivici?= Date: Tue, 11 Sep 2018 10:58:27 +0300 Subject: [PATCH] Fixed #566 --- src/components/dialog/Dialog.css | 6 +++++- src/components/dialog/Dialog.js | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/dialog/Dialog.css b/src/components/dialog/Dialog.css index 2e19a719f9..b08d67ceb6 100644 --- a/src/components/dialog/Dialog.css +++ b/src/components/dialog/Dialog.css @@ -20,11 +20,15 @@ overflow: auto; zoom: 1; } -.p-dialog .p-resizable-se { +.p-dialog .p-resizable-handle { width: 14px; height: 14px; right: 3px; bottom: 3px; + position: absolute; + font-size: .1px; + display: block; + cursor: se-resize; } .p-draggable .p-dialog-titlebar { cursor: move; diff --git a/src/components/dialog/Dialog.js b/src/components/dialog/Dialog.js index 73b4ccbf18..70319bcfb1 100644 --- a/src/components/dialog/Dialog.js +++ b/src/components/dialog/Dialog.js @@ -562,7 +562,7 @@ export class Dialog extends Component { renderResizer() { if(this.props.resizable) { return ( -
+
); } else {