Skip to content

Commit

Permalink
2.36.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JiHong88 authored Feb 1, 2021
2 parents f4286fb + d1d9812 commit d33ad25
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "suneditor",
"version": "2.36.0",
"version": "2.36.1",
"description": "Pure JavaScript based WYSIWYG web editor",
"main": "src/suneditor.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion dist/css/suneditor.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/suneditor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sideEffects": [
"./src/assets/css/*.css"
],
"version": "2.36.0",
"version": "2.36.1",
"description": "Pure JavaScript based WYSIWYG web editor",
"main": "src/suneditor.js",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/assets/css/suneditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@

/** --- Input */
.sun-editor input, .sun-editor select, .sun-editor textarea {color:#000; border:1px solid #ccc; border-radius:4px;}
.sun-editor input:focus, .sun-editor select:focus, .sun-editor textarea:focus {border:1px solid #80bdff !important; outline:0; -webkit-box-shadow:0 0 0 0.2rem #c7deff; box-shadow:0 0 0 0.2rem #c7deff; transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
.sun-editor input:focus, .sun-editor select:focus, .sun-editor textarea:focus {border:1px solid #80bdff; outline:0; -webkit-box-shadow:0 0 0 0.2rem #c7deff; box-shadow:0 0 0 0.2rem #c7deff; transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;}

/* se-btn button active*/
.sun-editor .se-btn:enabled.active {color:#4592ff; outline:0 none;}
Expand Down Expand Up @@ -173,7 +173,7 @@
.sun-editor .se-btn-select.se-btn-tool-size {width:78px;}

/** --- menu tray -------------------------------------------------------------- */
.sun-editor .se-btn-tray {position:relative; width:100%; height:100%; padding:4px 3px 0 3px; margin:0;}
.sun-editor .se-btn-tray {position:relative; width:100%; height:auto; padding:4px 3px 0 3px; margin:0;}
.sun-editor .se-menu-tray {position:absolute; top:0px; left:0px; width:100%; height:0px;}

/** --- submenu layer ---------------------------------------------------------- */
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/modules/resizing.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@
}
}

this.util.setDisabledButtons(true, this.resizingDisabledButtons);
resizeContainer.style.display = 'block';

const addOffset = {left: 0, top: 50};
Expand All @@ -480,6 +479,7 @@

this.setControllerPosition(contextResizing.resizeButton, resizeContainer, 'bottom', addOffset);
this.controllersOn(resizeContainer, contextResizing.resizeButton, this.util.setDisabledButtons.bind(this, false, this.resizingDisabledButtons), targetElement, plugin);
this.util.setDisabledButtons(true, this.resizingDisabledButtons);

contextResizing._resize_w = w;
contextResizing._resize_h = h;
Expand Down

0 comments on commit d33ad25

Please sign in to comment.