-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TinyMCE per block: Fix the inserter and drop the type icon from sideb…
…ar (#237)
- Loading branch information
1 parent
b962d79
commit 87b9d2f
Showing
12 changed files
with
88 additions
and
137 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
42 changes: 18 additions & 24 deletions
42
tinymce-per-block/src/controls/block-arrangement/style.scss
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,32 +1,26 @@ | ||
.block-list__block-arrangement { | ||
.block-arrangement { | ||
@include animate_fade; | ||
position: absolute; | ||
top: 10px; | ||
left: -65px; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.block-list__type-controls { | ||
margin-left: 0.6rem; | ||
} | ||
left: -35px; | ||
|
||
.block-list__block-arrange-control { | ||
display: block; | ||
padding: 0; | ||
border: none; | ||
outline: none; | ||
background: none; | ||
color: $gray-dark-300; | ||
cursor: pointer; | ||
.block-arrangement__control { | ||
display: block; | ||
padding: 0; | ||
border: none; | ||
outline: none; | ||
background: none; | ||
color: $gray-dark-300; | ||
cursor: pointer; | ||
|
||
&.is-disabled { | ||
color: $gray-light; | ||
} | ||
&.is-disabled { | ||
color: $gray-light; | ||
} | ||
|
||
.dashicon { | ||
display: block; | ||
height: 20px; | ||
width: 20px; | ||
.dashicon { | ||
display: block; | ||
height: 20px; | ||
width: 20px; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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