-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BCB: Add post comments styles (#3553)
* Add baseline styles for post comments. * Initial styles. * Blank Canvas Blocks: Add button styles for the Post Comments block Reply link * Remove widths because of WordPress/gutenberg#30382 * Reset borders and cursor for form inputs. * Move to border and cursor reset to button mixin. * Remove addition to button mixin. * Rebase. Co-authored-by: Danny Dudzic <[email protected]>
- Loading branch information
1 parent
7856f9d
commit ae57d02
Showing
4 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@import 'button'; | ||
|
||
.wp-block-post-comments { | ||
.comment { | ||
font-size: var(--wp--custom--form--typography--font-size); | ||
} | ||
|
||
label, .comment-meta { | ||
font-size: var(--wp--custom--form--label--typography--font-size); | ||
} | ||
|
||
input[type="submit"], .reply a { | ||
@include button-main-styles; | ||
@include button-hover-styles; | ||
} | ||
} |
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