-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tag Cloud: Prevent duplicate spacing in editor (#63832)
Co-authored-by: aaronrobertshaw <aaronrobertshaw@git.wordpress.org> Co-authored-by: ramonjd <ramonopoly@git.wordpress.org> Co-authored-by: Mamaduka <mamaduka@git.wordpress.org> Co-authored-by: akasunil <sunil25393@git.wordpress.org> Co-authored-by: richtabor <richtabor@git.wordpress.org>
- Loading branch information
1 parent
cad81e4
commit d1a2f43
Showing
2 changed files
with
10 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// The following styles are to prevent duplicate spacing for the tag cloud | ||
// block in the editor given it uses server side rendering. The specificity | ||
// must be higher than `0-1-0` to override global styles. Targeting the | ||
// inner use of the .wp-block-tag-cloud class should minimize impact on | ||
// other 3rd party styles targeting the block. | ||
.wp-block-tag-cloud .wp-block-tag-cloud { | ||
margin: 0; | ||
padding: 0; | ||
} |