Skip to content

Commit

Permalink
Merge pull request #3513 from nextcloud/fix/multiselect-checkmark
Browse files Browse the repository at this point in the history
Fix multiselect checkmark and plus icon
  • Loading branch information
skjnldsv authored Nov 23, 2022
2 parents bb23990 + 04e9dea commit 7dd77d8
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 7dd77d8

Please sign in to comment.