feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)

Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
This commit is contained in:
Andras Bacsai
2026-08-03 23:11:54 +02:00
committed by GitHub
co-authored by ShadowArcanist
parent 0b843bb07c
commit 8ae56587d5
497 changed files with 44045 additions and 22630 deletions
@@ -0,0 +1,18 @@
<?php
/**
* Create team primary action must use the theme-aware purple/yellow accent,
* not the legacy solid coollabs purple fill.
*/
test('create team button uses theme-aware primary accent classes', function () {
$view = file_get_contents(resource_path('views/livewire/team/create.blade.php'));
expect($view)
->toContain('Create team')
->toContain('bg-coollabs/10!')
->toContain('text-coollabs!')
->toContain('dark:bg-warning/15!')
->toContain('dark:text-warning!')
->not->toContain('bg-coollabs! text-white!')
->not->toContain('hover:bg-coollabs-100!');
});