mirror of
https://github.com/tiennm99/coolify.git
synced 2026-09-05 02:19:20 +00:00
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:
co-authored by
ShadowArcanist
parent
0b843bb07c
commit
8ae56587d5
@@ -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!');
|
||||
});
|
||||
Reference in New Issue
Block a user