From d60b6cfd8198238296efd94c1443988bb3e3e883 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 26 Jul 2024 12:34:21 +0300 Subject: [PATCH] Fixed #6109 --- .../doc/organizationchart/ColoredDoc.vue | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/apps/showcase/doc/organizationchart/ColoredDoc.vue b/apps/showcase/doc/organizationchart/ColoredDoc.vue index 455611aec..7bd02597e 100644 --- a/apps/showcase/doc/organizationchart/ColoredDoc.vue +++ b/apps/showcase/doc/organizationchart/ColoredDoc.vue @@ -28,7 +28,7 @@ export default { data: { key: '0', type: 'person', - styleClass: 'bg-indigo-100 text-indigo-900 rounded-xl', + styleClass: '!bg-indigo-100 !text-indigo-900 rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png', name: 'Amy Elsner', @@ -38,7 +38,7 @@ export default { { key: '0_0', type: 'person', - styleClass: 'bg-purple-100 text-purple-900 rounded-xl', + styleClass: '!bg-purple-100 !text-purple-900 rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/annafali.png', name: 'Anna Fali', @@ -47,18 +47,18 @@ export default { children: [ { label: 'Sales', - styleClass: 'bg-purple-100 text-purple-900 rounded-xl' + styleClass: '!bg-purple-100 !text-purple-900 rounded-xl' }, { label: 'Marketing', - styleClass: 'bg-purple-100 text-purple-900 rounded-xl' + styleClass: '!bg-purple-100 !text-purple-900 rounded-xl' } ] }, { key: '0_1', type: 'person', - styleClass: 'bg-teal-100 text-teal-900 rounded-xl', + styleClass: '!bg-teal-100 !text-teal-900 rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/stephenshaw.png', name: 'Stephen Shaw', @@ -67,11 +67,11 @@ export default { children: [ { label: 'Development', - styleClass: 'bg-teal-100 text-teal-900 rounded-xl' + styleClass: '!bg-teal-100 !text-teal-900 rounded-xl' }, { label: 'UI/UX Design', - styleClass: 'bg-teal-100 text-teal-900 rounded-xl' + styleClass: '!bg-teal-100 !text-teal-900 rounded-xl' } ] } @@ -121,7 +121,7 @@ export default { data: { key: '0', type: 'person', - styleClass: 'bg-indigo-100 text-white rounded-xl', + styleClass: '!bg-indigo-100 text-white rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png', name: 'Amy Elsner', @@ -131,7 +131,7 @@ export default { { key: '0_0', type: 'person', - styleClass: 'bg-purple-100 text-white rounded-xl', + styleClass: '!bg-purple-100 text-white rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/annafali.png', name: 'Anna Fali', @@ -140,18 +140,18 @@ export default { children: [ { label: 'Sales', - styleClass: 'bg-purple-100 text-white rounded-xl' + styleClass: '!bg-purple-100 text-white rounded-xl' }, { label: 'Marketing', - styleClass: 'bg-purple-100 text-white rounded-xl' + styleClass: '!bg-purple-100 text-white rounded-xl' } ] }, { key: '0_1', type: 'person', - styleClass: 'bg-teal-100 text-white rounded-xl', + styleClass: '!bg-teal-100 text-white rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/stephenshaw.png', name: 'Stephen Shaw', @@ -160,11 +160,11 @@ export default { children: [ { label: 'Development', - styleClass: 'bg-teal-100 text-white rounded-xl' + styleClass: '!bg-teal-100 text-white rounded-xl' }, { label: 'UI/UX Design', - styleClass: 'bg-teal-100 text-white rounded-xl' + styleClass: '!bg-teal-100 text-white rounded-xl' } ] } @@ -201,7 +201,7 @@ import { ref } from "vue"; const data = ref({ key: '0', type: 'person', - styleClass: 'bg-indigo-100 text-white rounded-xl', + styleClass: '!bg-indigo-100 text-white rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png', name: 'Amy Elsner', @@ -211,7 +211,7 @@ const data = ref({ { key: '0_0', type: 'person', - styleClass: 'bg-purple-100 text-white rounded-xl', + styleClass: '!bg-purple-100 text-white rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/annafali.png', name: 'Anna Fali', @@ -220,18 +220,18 @@ const data = ref({ children: [ { label: 'Sales', - styleClass: 'bg-purple-100 text-white rounded-xl' + styleClass: '!bg-purple-100 text-white rounded-xl' }, { label: 'Marketing', - styleClass: 'bg-purple-100 text-white rounded-xl' + styleClass: '!bg-purple-100 text-white rounded-xl' } ] }, { key: '0_1', type: 'person', - styleClass: 'bg-teal-100 text-white rounded-xl', + styleClass: '!bg-teal-100 text-white rounded-xl', data: { image: 'https://primefaces.org/cdn/primevue/images/avatar/stephenshaw.png', name: 'Stephen Shaw', @@ -240,11 +240,11 @@ const data = ref({ children: [ { label: 'Development', - styleClass: 'bg-teal-100 text-white rounded-xl' + styleClass: '!bg-teal-100 text-white rounded-xl' }, { label: 'UI/UX Design', - styleClass: 'bg-teal-100 text-white rounded-xl' + styleClass: '!bg-teal-100 text-white rounded-xl' } ] }