feat(branding): yellow scrollbar and hide FQDN settings field
All checks were successful
Build MapleDeploy Coolify Image / build (push) Successful in 55s
All checks were successful
Build MapleDeploy Coolify Image / build (push) Successful in 55s
- Change scrollbar thumb from Coolify red to MapleDeploy yellow - Hide FQDN field from settings UI (managed during provisioning)
This commit is contained in:
parent
b9174f8d09
commit
0c9c3f611a
2 changed files with 3 additions and 6 deletions
|
|
@ -209,7 +209,8 @@ @utility icon {
|
||||||
}
|
}
|
||||||
|
|
||||||
@utility scrollbar {
|
@utility scrollbar {
|
||||||
@apply scrollbar-thumb-coollabs-100 scrollbar-track-neutral-200 dark:scrollbar-track-coolgray-200 scrollbar-thin;
|
/* MapleDeploy branding: yellow scrollbar thumb instead of Coolify red */
|
||||||
|
@apply scrollbar-thumb-warning scrollbar-track-neutral-200 dark:scrollbar-track-coolgray-200 scrollbar-thin;
|
||||||
}
|
}
|
||||||
|
|
||||||
@utility main {
|
@utility main {
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,7 @@ class="flex flex-col h-full gap-8 sm:flex-row">
|
||||||
<div class="flex flex-col gap-2">
|
<div class="flex flex-col gap-2">
|
||||||
<div class="flex flex-wrap items-end gap-2">
|
<div class="flex flex-wrap items-end gap-2">
|
||||||
<div class="flex gap-2 md:flex-row flex-col w-full">
|
<div class="flex gap-2 md:flex-row flex-col w-full">
|
||||||
<x-forms.input canGate="update" :canResource="$settings" id="fqdn" label="URL"
|
{{-- MapleDeploy branding: FQDN is managed during provisioning, hide from customers --}}
|
||||||
helper="Enter the full URL of the instance (for example, https://dashboard.example.com).<br><br>
|
|
||||||
<span class='dark:text-warning text-coollabs'>Important: </span>
|
|
||||||
If you want the dashboard to be accessible over HTTPS, you must include <b>https://</b> at the start of the URL. Without it, the dashboard will use HTTP and won’t be secured."
|
|
||||||
placeholder="https://coolify.yourdomain.com" />
|
|
||||||
<x-forms.input canGate="update" :canResource="$settings" id="instance_name" label="Name" placeholder="MapleDeploy"
|
<x-forms.input canGate="update" :canResource="$settings" id="instance_name" label="Name" placeholder="MapleDeploy"
|
||||||
helper="Custom name for your MapleDeploy instance, shown in the URL." />
|
helper="Custom name for your MapleDeploy instance, shown in the URL." />
|
||||||
<div class="w-full" x-data="{
|
<div class="w-full" x-data="{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue