diff --git a/business-registry-dashboard/app/app.config.ts b/business-registry-dashboard/app/app.config.ts index fcc3f2b..c9e9979 100644 --- a/business-registry-dashboard/app/app.config.ts +++ b/business-registry-dashboard/app/app.config.ts @@ -173,6 +173,7 @@ export default defineAppConfig({ label: 'text-gray-700', rounded: 'rounded-none', width: 'min-w-fit', + padding: 'p-0', option: { rounded: 'rounded-none', active: 'text-primary-500', @@ -247,15 +248,15 @@ export default defineAppConfig({ tooltip: { wrapper: 'relative inline-flex max-h-min', container: 'z-20 group min-h-fit', - background: 'bg-gray-700', + background: 'bg-gray-700/90', color: 'text-white', - ring: 'ring-1 ring-gray-700', + ring: 'ring-1 ring-gray-700/90', rounded: 'rounded', - base: 'h-auto px-2 py-1 text-sm font-normal relative whitespace-normal', + base: 'h-auto p-4 text-sm font-normal relative whitespace-normal', arrow: { base: 'before:w-3 before:h-3', - ring: 'before:ring-1 before:ring-gray-700', - background: 'before:bg-gray-700', + ring: 'before:ring-1 before:ring-gray-700/90', + background: 'before:bg-gray-700/90', rounded: 'before:rounded-none' } }, diff --git a/business-registry-dashboard/app/components/BusinessLookup.vue b/business-registry-dashboard/app/components/BusinessLookup.vue index f20dc2b..bb37f8f 100644 --- a/business-registry-dashboard/app/components/BusinessLookup.vue +++ b/business-registry-dashboard/app/components/BusinessLookup.vue @@ -12,7 +12,7 @@ const searchType = ref<'reg' | 'namex'>('reg') label: { base: 'block font-normal text-gray-700 dark:text-gray-200' }, - help: 'mt-2 ml-2 text-xs text-bcGovColor-midGray', + help: 'mt-2 ml-3 text-xs text-bcGovColor-midGray', }" >
-
+
{{ $t('form.manageNR.requestedNames', nameRequest.names.length) }}
  • @@ -22,7 +22,7 @@ defineProps<{
-
+
{{ $t('form.manageNR.nrNum') }} {{ nameRequest.nrNum }}
diff --git a/business-registry-dashboard/app/components/Sbc/PageSection/Card.vue b/business-registry-dashboard/app/components/Sbc/PageSection/Card.vue index 3494436..fa6330d 100644 --- a/business-registry-dashboard/app/components/Sbc/PageSection/Card.vue +++ b/business-registry-dashboard/app/components/Sbc/PageSection/Card.vue @@ -13,7 +13,7 @@ defineProps<{ header: { base: 'rounded-t', background: 'bg-bcGovColor-gray2', - padding: 'px-4 py-5 sm:px-6', + padding: 'px-4 py-5 sm:px-4', }, body: { padding: 'px-0 py-0 sm:p-0', diff --git a/business-registry-dashboard/app/components/Table/AffiliatedEntity/Action.vue b/business-registry-dashboard/app/components/Table/AffiliatedEntity/Action.vue index 1a3063d..007b357 100644 --- a/business-registry-dashboard/app/components/Table/AffiliatedEntity/Action.vue +++ b/business-registry-dashboard/app/components/Table/AffiliatedEntity/Action.vue @@ -384,7 +384,7 @@ const moreActionsDropdownOptions = computed(() => { > diff --git a/business-registry-dashboard/app/components/Table/AffiliatedEntity/index.vue b/business-registry-dashboard/app/components/Table/AffiliatedEntity/index.vue index 943fdcd..773889e 100644 --- a/business-registry-dashboard/app/components/Table/AffiliatedEntity/index.vue +++ b/business-registry-dashboard/app/components/Table/AffiliatedEntity/index.vue @@ -42,22 +42,38 @@ watch( @@ -73,7 +89,24 @@ watch( padding: 'px-0 py-0' }, td: { - base: 'whitespace-normal max-w-96 align-top', + base: ` + /* Default text handling */ + whitespace-normal + align-top + + /* Standard column width constraints */ + w-48 + min-w-[192px] + max-w-[192px] + + /* Wider first column for business names */ + [&:first-child]:min-w-[250px] + [&:first-child]:max-w-[250px] + + /* Wider third column for type */ + [&:nth-child(3)]:min-w-[230px] + [&:nth-child(3)]:max-w-[230px] + `, padding: 'px-4 py-4', color: 'text-bcGovColor-midGray', font: '', @@ -137,20 +170,32 @@ watch( @clear="affStore.affiliations.filters.type = ''" > - - {{ affStore.affiliations.filters.type !== '' ? affStore.affiliations.filters.type : $t('table.affiliation.filter.legalType.placeholder') }} + - - + @@ -168,20 +213,32 @@ watch( @clear="affStore.affiliations.filters.status = ''" > - - {{ affStore.affiliations.filters.status !== '' ? affStore.affiliations.filters.status : $t('table.affiliation.filter.busStates.placeholder') }} + - - + diff --git a/business-registry-dashboard/app/components/Table/Column/Header.vue b/business-registry-dashboard/app/components/Table/Column/Header.vue index 1e741ad..813a18c 100644 --- a/business-registry-dashboard/app/components/Table/Column/Header.vue +++ b/business-registry-dashboard/app/components/Table/Column/Header.vue @@ -12,8 +12,8 @@ defineEmits(['clear'])