Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix multiselect checkmark and plus icon
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
skjnldsv committed Nov 23, 2022
commit 04e9deadae7d37c83903312354bc23eaa2a75ea4
4 changes: 2 additions & 2 deletions src/components/NcMultiselect/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,14 @@

.multiselect__content-wrapper li > span {
&::before {
background-image: var(--icon-checkmark-000);
background-image: var(--icon-checkmark-dark);
}

/* add the prop tag-placeholder="create" to add the +
icon on top of an unknown-and-ready-to-be-created entry */
&[data-select='create'] {
&::before {
background-image: var(--icon-add-000);
background-image: var(--icon-add-dark);
visibility: visible;
}
}
Expand Down