Skip to content

Commit

Permalink
move pseudo-selector to end of nested selectors in form.css (#2274)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnC-80 committed Apr 25, 2024
1 parent 7140761 commit 9fec08c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Exclude invalid additional currencies. Refs STCOM-1274.
* Validate ref in `Paneset` before dereferencing it. Refs STCOM-1235.
* Resolve bug with form control validation styles not rendering. Adjusted order of nested selectors. Refs STCOM-1284.

## [12.1.0](https://github.com/folio-org/stripes-components/tree/v12.1.0) (2024-03-12)
[Full Changelog](https://github.com/folio-org/stripes-components/compare/v12.0.0...v12.1.0)
Expand Down
8 changes: 4 additions & 4 deletions lib/sharedStyles/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
display: flex;
align-items: center;

&::-ms-clear {
display: none;
}

&:focus,
&.isFocused {
border: 1px solid var(--primary);
Expand Down Expand Up @@ -82,6 +78,10 @@
&.isChanged {
background-color: oklch(from var(--primary) l c h / 20%);
}

&::-ms-clear {
display: none;
}
}

/**
Expand Down

0 comments on commit 9fec08c

Please sign in to comment.