diff --git a/packages/design-system/docs/components/OcRadio/group.vue b/packages/design-system/docs/components/OcRadio/group.vue index b031de4fe5..2ff6124af0 100644 --- a/packages/design-system/docs/components/OcRadio/group.vue +++ b/packages/design-system/docs/components/OcRadio/group.vue @@ -5,7 +5,7 @@ v-model="inputValue" :option="o" :label="o" - class="oc-display-block" + class="block" />

Selection: {{ inputValue || 'None' }}

diff --git a/packages/design-system/src/components/OcApplicationIcon/OcApplicationIcon.vue b/packages/design-system/src/components/OcApplicationIcon/OcApplicationIcon.vue index 1d5d15a7d1..2ef0e878ae 100644 --- a/packages/design-system/src/components/OcApplicationIcon/OcApplicationIcon.vue +++ b/packages/design-system/src/components/OcApplicationIcon/OcApplicationIcon.vue @@ -3,7 +3,7 @@ class="oc-application-icon inline-flex items-center justify-center rounded-sm w-8 h-8" :style="iconStyle" > - + @@ -31,9 +31,6 @@ export interface Props { const { icon, colorPrimary } = defineProps() -const iconColor = computed(() => { - return 'rgba(255,255,255,0.7)' -}) const primaryColor = computed(() => { return getHexFromCssVar(colorPrimary || '') }) @@ -57,13 +54,3 @@ const iconStyle = computed(() => { } }) - - diff --git a/packages/design-system/src/components/OcAvatarItem/OcAvatarItem.vue b/packages/design-system/src/components/OcAvatarItem/OcAvatarItem.vue index 1d37d23b1e..0994437adb 100644 --- a/packages/design-system/src/components/OcAvatarItem/OcAvatarItem.vue +++ b/packages/design-system/src/components/OcAvatarItem/OcAvatarItem.vue @@ -10,12 +10,17 @@ class="oc-avatar-item inline-flex items-center justify-center rounded-[50%]" :style="{ backgroundColor, - '--icon-color': iconColor, width: avatarWidth, height: avatarWidth }" > - + @@ -106,9 +111,5 @@ const pickBackgroundColor = () => { background-position: center; background-repeat: no-repeat; background-size: 18px; - - .oc-icon > svg { - fill: var(--icon-color) !important; - } } diff --git a/packages/design-system/src/components/OcAvatars/OcAvatars.vue b/packages/design-system/src/components/OcAvatars/OcAvatars.vue index 4343d3fc98..6fdc0ae46f 100644 --- a/packages/design-system/src/components/OcAvatars/OcAvatars.vue +++ b/packages/design-system/src/components/OcAvatars/OcAvatars.vue @@ -3,7 +3,7 @@