Skip to content

Commit

Permalink
Fixed #566
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici authored and Çağatay Çivici committed Sep 11, 2018
1 parent a0c309c commit 9e7220c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/dialog/Dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/components/dialog/Dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ export class Dialog extends Component {
renderResizer() {
if(this.props.resizable) {
return (
<div className="p-resizable-handle p-resizable-se p-icon p-icon-gripsmall-diagonal-se" style={{ 'zIndex': '90' }} onMouseDown={this.initResize}></div>
<div className="p-resizable-handle" onMouseDown={this.initResize}></div>
);
}
else {
Expand Down

0 comments on commit 9e7220c

Please sign in to comment.