Skip to content

Commit

Permalink
Fix/form textarea default border stylinig (#41229)
Browse files Browse the repository at this point in the history
* Forms: fix missing default border styling for text boxes
  • Loading branch information
enejb authored Jan 21, 2025
1 parent ee8680a commit 83c66ed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: fixed
Comment: THis seems like a minor fix


8 changes: 4 additions & 4 deletions projects/packages/forms/src/blocks/contact-form/editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,10 @@
}

.jetpack-field__textarea {
border: var(--jetpack--contact-form--border);
border-color: var(--jetpack--contact-form--border-color);
border-style: var(--jetpack--contact-form--border-style);
border-width: var(--jetpack--contact-form--border-size);
border: var(--jetpack--contact-form--border, 1px solid #8c8f94);
border-color: var(--jetpack--contact-form--border-color, #8c8f94);
border-style: var(--jetpack--contact-form--border-style, solid );
border-width: var(--jetpack--contact-form--border-size, 1px );
}

.components-base-control__field {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: other

Forms: fixed default editor stying for textarea

0 comments on commit 83c66ed

Please sign in to comment.