Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions changelog/unreleased/universal-icon-has-incorrect-color.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Use correct color for universal icon

We've fixed the universal icon color to ensure it matches the chosen theme.

https://kiteworks.atlassian.net/browse/OCISDEV-353
https://github.com/owncloud/web/pull/13142
Original file line number Diff line number Diff line change
Expand Up @@ -69,27 +69,27 @@ const style = computed(() => ({
@include oc-icon-size(8);
}

&.primary {
&.primary > svg {
background-color: var(--oc-color-swatch-primary-default);
}

&.passive {
&.passive > svg {
background-color: var(--oc-color-swatch-passive-default);
}

&.warning {
&.warning > svg {
background-color: var(--oc-color-swatch-warning-default);
}

&.success {
&.success > svg {
background-color: var(--oc-color-swatch-success-default);
}

&.danger {
&.danger > svg {
background-color: var(--oc-color-swatch-danger-default);
}

&.brand {
&.brand > svg {
background-color: var(--oc-color-swatch-brand-default);
}
}
Expand Down