Skip to content

Commit

Permalink
Dara: Fix display of dotted separator (#7979)
Browse files Browse the repository at this point in the history
The dotted separator wasn't displaying because the height of the
separator was too small. This change overrides the height for the dotted
separator only.
  • Loading branch information
dsas authored Jul 31, 2024
1 parent aaf116b commit 083d413
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dara/blocks.css
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,12 @@ hr.wp-block-separator {
border: 0;
}

.wp-block-separator:not(.is-style-dots) {
height: 1px;
}

.wp-block-separator {
border: 0;
height: 1px;
margin: 1.6em auto;
background-color: #e6e6e6;
max-width: 66%;
Expand Down
5 changes: 4 additions & 1 deletion dara/editor-blocks.css
Original file line number Diff line number Diff line change
Expand Up @@ -805,9 +805,12 @@

/* Separator */

.wp-block-separator:not(.is-style-dots) {
height:1px;
}

.wp-block-separator {
border: 0;
height: 1px;
margin: 1.6em auto;
background-color: #e6e6e6;
max-width: 66%;
Expand Down

0 comments on commit 083d413

Please sign in to comment.