mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
Merge pull request #665 from prymitive/fix-filter-close
fix(ui): fix styling of the close icon on filter input button
This commit is contained in:
@@ -100,17 +100,10 @@ const FilterInputLabel = observer(
|
||||
/>
|
||||
</TooltipWrapper>
|
||||
<span
|
||||
className="close ml-1 align-text-bottom cursor-pointer"
|
||||
style={filter.applied ? cs.style : {}}
|
||||
className="close ml-1 align-text-bottom cursor-pointer text-reset"
|
||||
onClick={() => alertStore.filters.removeFilter(filter.raw)}
|
||||
>
|
||||
<span
|
||||
className={cs.colorClassNames
|
||||
.filter(c => !c.match(/btn-|badge-/))
|
||||
.join(" ")}
|
||||
>
|
||||
×
|
||||
</span>
|
||||
<span className="text-reset">×</span>
|
||||
</span>
|
||||
</button>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user