diff --git a/packages/design-system/docs/.vitepress/config.ts b/packages/design-system/docs/.vitepress/config.ts
index d13e5a7d43..8197f3570a 100644
--- a/packages/design-system/docs/.vitepress/config.ts
+++ b/packages/design-system/docs/.vitepress/config.ts
@@ -178,10 +178,6 @@ export default defineConfig({
text: 'OcFilterChip',
link: '/OcFilterChip'
},
- {
- text: 'OcGrid',
- link: '/OcGrid'
- },
{
text: 'OcHiddenAnnouncer',
link: '/OcHiddenAnnouncer'
diff --git a/packages/design-system/docs/.vitepress/theme/custom.scss b/packages/design-system/docs/.vitepress/theme/custom.scss
index 6f54656b05..fa4847097a 100644
--- a/packages/design-system/docs/.vitepress/theme/custom.scss
+++ b/packages/design-system/docs/.vitepress/theme/custom.scss
@@ -12,7 +12,6 @@ button.oc-button-passive-outline:focus:not(:focus-visible) {
outline: 1px solid var(--oc-role-outline) !important;
}
.oc-modal-title > h2 {
- padding: 0 !important;
border: 0 !important;
}
ol.oc-pagination-list {
@@ -20,7 +19,6 @@ ol.oc-pagination-list {
}
p.oc-recipient-name {
line-height: unset !important;
- margin: 0 !important;
}
@font-face {
diff --git a/packages/design-system/docs/components/OcGrid/OcGrid.md b/packages/design-system/docs/components/OcGrid/OcGrid.md
deleted file mode 100644
index b0c544fb19..0000000000
--- a/packages/design-system/docs/components/OcGrid/OcGrid.md
+++ /dev/null
@@ -1,55 +0,0 @@
----
-title: OcGrid component
-next: false
-prev: false
----
-
-# OcGrid component
-
-## Description
-
-The `OcGrid` component allows you to arrange block elements in columns.
-
-## Examples
-
-### Default
-
-The component provides a default slot for any content that should be displayed in the grid.
-
-::: livecode
-
-```html
-
-
-
-
-
-
-
-
-
-
-
-```
-
-:::
-
-::: component-api
diff --git a/packages/design-system/src/components/OcAvatars/OcAvatars.vue b/packages/design-system/src/components/OcAvatars/OcAvatars.vue
index c3064aadd9..4c1ade9bc2 100644
--- a/packages/design-system/src/components/OcAvatars/OcAvatars.vue
+++ b/packages/design-system/src/components/OcAvatars/OcAvatars.vue
@@ -191,7 +191,15 @@ onMounted(() => {
})
})
+
diff --git a/packages/design-system/src/components/OcColorInput/OcColorInput.vue b/packages/design-system/src/components/OcColorInput/OcColorInput.vue
index 76a4099f2f..369e69f1eb 100644
--- a/packages/design-system/src/components/OcColorInput/OcColorInput.vue
+++ b/packages/design-system/src/components/OcColorInput/OcColorInput.vue
@@ -12,10 +12,10 @@
v-bind="additionalAttributes"
type="color"
:aria-invalid="ariaInvalid"
- class="oc-color-input oc-input oc-rounded"
+ class="oc-color-input oc-input oc-rounded py-0.5"
:class="{
'oc-color-input-danger': !!errorMessage,
- 'clear-action-visible': showClearButton
+ 'pr-6': showClearButton
}"
:value="modelValue"
:disabled="disabled"
@@ -34,7 +34,7 @@
-
+
diff --git a/packages/design-system/src/components/OcDefinitionList/OcDefinitionList.vue b/packages/design-system/src/components/OcDefinitionList/OcDefinitionList.vue
index 0a6e97cc3e..81779fe124 100644
--- a/packages/design-system/src/components/OcDefinitionList/OcDefinitionList.vue
+++ b/packages/design-system/src/components/OcDefinitionList/OcDefinitionList.vue
@@ -23,14 +23,29 @@ export interface Props {
const { items } = defineProps
()
+
diff --git a/packages/design-system/src/components/OcDrop/OcDrop.vue b/packages/design-system/src/components/OcDrop/OcDrop.vue
index 46470ca785..d29269a302 100644
--- a/packages/design-system/src/components/OcDrop/OcDrop.vue
+++ b/packages/design-system/src/components/OcDrop/OcDrop.vue
@@ -340,13 +340,14 @@ watch(
diff --git a/packages/design-system/src/components/OcIcon/OcIcon.vue b/packages/design-system/src/components/OcIcon/OcIcon.vue
index 9a57e61366..9b6d9e29a3 100644
--- a/packages/design-system/src/components/OcIcon/OcIcon.vue
+++ b/packages/design-system/src/components/OcIcon/OcIcon.vue
@@ -1,7 +1,7 @@
-
-
+
+
{{ $gettext(item.text) }}
@@ -115,7 +116,6 @@ export default {
components: { FocusTrap }
}
-
diff --git a/packages/design-system/src/components/OcRecipient/OcRecipient.vue b/packages/design-system/src/components/OcRecipient/OcRecipient.vue
index 72e8f6f371..f7af915def 100644
--- a/packages/design-system/src/components/OcRecipient/OcRecipient.vue
+++ b/packages/design-system/src/components/OcRecipient/OcRecipient.vue
@@ -10,7 +10,7 @@
data-testid="recipient-icon"
/>
-
+
@@ -38,7 +38,15 @@ export interface Slots {
const { recipient } = defineProps()
defineSlots()
+
diff --git a/packages/design-system/src/components/OcSearchBar/OcSearchBar.vue b/packages/design-system/src/components/OcSearchBar/OcSearchBar.vue
index 755599cd98..3c6e37260f 100644
--- a/packages/design-system/src/components/OcSearchBar/OcSearchBar.vue
+++ b/packages/design-system/src/components/OcSearchBar/OcSearchBar.vue
@@ -1,8 +1,7 @@
-
@@ -52,14 +51,13 @@
>
-
+
+
diff --git a/packages/design-system/src/components/OcTextInput/__snapshots__/OcTextInput.spec.ts.snap b/packages/design-system/src/components/OcTextInput/__snapshots__/OcTextInput.spec.ts.snap
index 275edcc247..40e011ca85 100644
--- a/packages/design-system/src/components/OcTextInput/__snapshots__/OcTextInput.spec.ts.snap
+++ b/packages/design-system/src/components/OcTextInput/__snapshots__/OcTextInput.spec.ts.snap
@@ -8,7 +8,7 @@ exports[`OcTextInput > password input field > password policy > displays error s