From 03d224b708c2b74ce048bb42695cd5bf23b17c69 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 16 May 2023 21:49:29 +0200 Subject: [PATCH] css --- .../Livewire/Project/Application/Revert.php | 2 +- public/svgs/external-link.svg | 6 +++ resources/css/app.css | 42 +++++++++---------- .../components/applications/navbar.blade.php | 19 +++++++-- .../views/components/magic-bar.blade.php | 2 +- resources/views/components/navbar.blade.php | 3 +- .../views/livewire/force-upgrade.blade.php | 2 +- .../project/application/deploy.blade.php | 13 ------ .../project/application/revert.blade.php | 3 +- .../application/configuration.blade.php | 4 +- .../project/application/deployments.blade.php | 2 +- 11 files changed, 52 insertions(+), 46 deletions(-) create mode 100644 public/svgs/external-link.svg diff --git a/app/Http/Livewire/Project/Application/Revert.php b/app/Http/Livewire/Project/Application/Revert.php index 0008fa3b7..6440af7dc 100644 --- a/app/Http/Livewire/Project/Application/Revert.php +++ b/app/Http/Livewire/Project/Application/Revert.php @@ -10,7 +10,7 @@ class Revert extends Component { public Application $application; public $images = []; - public string $current; + public string|null $current; public function revertImage($tag) { dd("Reverting to {$this->application->uuid}:{$tag}"); diff --git a/public/svgs/external-link.svg b/public/svgs/external-link.svg new file mode 100644 index 000000000..e0e47d694 --- /dev/null +++ b/public/svgs/external-link.svg @@ -0,0 +1,6 @@ + diff --git a/resources/css/app.css b/resources/css/app.css index 5806bf240..c3437787a 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -16,28 +16,8 @@ textarea { select { @apply border border-solid border-coolgray-400 rounded p-2 px-4 bg-transparent text-white disabled:text-neutral-600 read-only:select-none outline-none; } - button { - @apply border-none px-2 p-1 cursor-pointer; -} -.main-menu { - @apply relative float-left; -} -.main-menu:after { - content: "/"; - @apply absolute right-0 top-0 text-neutral-400 px-2 pt-[0.3rem]; -} -.magic-input { - @apply w-[25rem] rounded outline-none bg-coolgray-400 focus:bg-neutral-700 text-white; -} -.magic-items { - @apply absolute top-12 w-[25rem] bg-coolgray-200 border-b-2 border-r-2 border-l-2 border-solid border-coolgray-100 rounded-b; -} -.magic-item { - @apply m-2 py-2 pl-4 cursor-pointer hover:bg-neutral-700 text-neutral-300 hover:text-white; -} -.magic-item-focused { - @apply bg-neutral-700 text-white; + @apply border border-solid border-coolgray-200 px-3 p-1 cursor-pointer; } h1 { @apply text-3xl font-bold pb-4; @@ -55,3 +35,23 @@ a { .box { @apply flex items-center justify-center text-sm rounded cursor-pointer h-14 bg-coolgray-200 hover:bg-coollabs-100 hover:text-white p-2 hover:no-underline; } + +.main-menu { + @apply relative float-left; +} +.main-menu:after { + content: "/"; + @apply absolute right-0 top-0 text-neutral-400 px-2 pt-[0.5rem]; +} +.magic-input { + @apply w-[25rem] rounded outline-none bg-coolgray-400 focus:bg-neutral-700 text-white; +} +.magic-items { + @apply absolute top-12 w-[25rem] bg-coolgray-200 border-b-2 border-r-2 border-l-2 border-solid border-coolgray-100 rounded-b; +} +.magic-item { + @apply m-2 py-2 pl-4 cursor-pointer hover:bg-neutral-700 text-neutral-300 hover:text-white; +} +.magic-item-focused { + @apply bg-neutral-700 text-white; +} diff --git a/resources/views/components/applications/navbar.blade.php b/resources/views/components/applications/navbar.blade.php index 599b1e4ef..a6ac7f856 100644 --- a/resources/views/components/applications/navbar.blade.php +++ b/resources/views/components/applications/navbar.blade.php @@ -1,4 +1,4 @@ -