-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce8fbb8
commit 103f8b3
Showing
4 changed files
with
215 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! | ||
* tui-image-editor.js | ||
* @version 3.2.2 | ||
* @version 3.3.0 | ||
* @author NHNEnt FE Development Lab <[email protected]> | ||
* @license MIT | ||
*/ | ||
|
@@ -255,6 +255,9 @@ body > textarea { | |
font-size: 11px; | ||
margin: 0 9px 0 9px; | ||
} | ||
.tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item .tui-image-editor-button.preset { | ||
margin: 0 9px 20px 5px; | ||
} | ||
.tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item label { | ||
display: inline-block; | ||
cursor: pointer; | ||
|
@@ -884,10 +887,16 @@ body > textarea { | |
#tie-mask-apply.apply.active .tui-image-editor-button.apply svg > use.active { | ||
display: block; | ||
} | ||
#tie-crop-button .tui-image-editor-button.apply { | ||
#tie-crop-button .tui-image-editor-button.apply, | ||
#tie-crop-preset-button .tui-image-editor-button.apply { | ||
margin-right: 24px; | ||
} | ||
#tie-crop-button .tui-image-editor-button.apply.active svg > use.active { | ||
#tie-crop-button .tui-image-editor-button.preset.active svg > use.active, | ||
#tie-crop-preset-button .tui-image-editor-button.preset.active svg > use.active { | ||
display: block; | ||
} | ||
#tie-crop-button .tui-image-editor-button.apply.active svg > use.active, | ||
#tie-crop-preset-button .tui-image-editor-button.apply.active svg > use.active { | ||
display: block; | ||
} | ||
#tie-shape-button.rect .tui-image-editor-button.rect svg > use.normal, | ||
|
Oops, something went wrong.