Skip to content

Commit

Permalink
Fixed display checkboxes (#5021)
Browse files Browse the repository at this point in the history
  • Loading branch information
grafitto authored Aug 29, 2022
1 parent 708efd8 commit 0787c78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions app/react/App/scss/modules/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@
}
}

.multiselectItem-input[data-state="3"] {
.multiselectItem-input[data-state='3'] {
& + label {
.checkbox-empty {
display: none;
Expand All @@ -764,7 +764,7 @@
color: $c-black;
}
}
.multiselectItem-input[data-state="2"] {
.multiselectItem-input[data-state='2'] {
& + label {
.checkbox-empty {
display: none;
Expand All @@ -783,7 +783,7 @@
color: $c-black;
}
}
.multiselectItem-input[data-state="1"] {
.multiselectItem-input[data-state='1'] {
& + label {
.checkbox-empty {
display: none;
Expand Down Expand Up @@ -823,7 +823,8 @@
line-height: inherit;
}

.documentTypes-selector .multiselectItem-input:checked {
.documentTypes-selector .multiselectItem-input:checked,
.relationshipFilters .multiselectItem-input:checked {
& + label {
.checkbox-empty {
display: none;
Expand Down
2 changes: 1 addition & 1 deletion app/react/ConnectionsList/components/ConnectionsGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class ConnectionsGroup extends Component {
const group = this.props.group.toJS();
const { connectionLabel, templates } = group;
return (
<li>
<li className="relationshipFilters">
<div className="multiselectItem">
<input
type="checkbox"
Expand Down

0 comments on commit 0787c78

Please sign in to comment.