Skip to content

Commit 2ed6791

Browse files
authored
IBX-5717: Content type filter values in UDW have minor CSS issues (#790)
1 parent ced40e7 commit 2ed6791

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/bundle/Resources/public/scss/ui/modules/universal-discovery/_filters.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,6 @@
128128
&__collapsible-list-item {
129129
padding: calculateRem(6px) 0;
130130

131-
.form-check {
132-
padding: 0;
133-
}
134-
135131
.ibexa-input--checkbox {
136132
margin-right: calculateRem(8px);
137133
}

src/bundle/ui-dev/src/modules/universal-discovery/components/content-type-selector/content.type.selector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ const ContentTypeSelector = () => {
4343

4444
return (
4545
<li key={contentType.identifier} className="c-filters__collapsible-list-item">
46-
<div className="form-check">
46+
<div className="form-check form-check-inline">
4747
<input
4848
type="checkbox"
4949
id={`ibexa-search-content-type-${contentType.identifier}`}
50-
className="ibexa-input ibexa-input--checkbox"
50+
className="ibexa-input ibexa-input--checkbox form-check-input"
5151
value={contentType.identifier}
5252
data-content-type-identifier={contentType.identifier}
5353
onChange={handleContentTypeSelect}

0 commit comments

Comments
 (0)