diff --git a/config/ladill_launcher.php b/config/ladill_launcher.php index f100662..bfdd073 100644 --- a/config/ladill_launcher.php +++ b/config/ladill_launcher.php @@ -30,7 +30,6 @@ return [ ['name' => 'QR Plus', 'url' => 'https://qrplus.'.$root.'/sso/connect?redirect='.urlencode('https://qrplus.'.$root.'/dashboard'), 'icon' => 'qrplus.svg'], ['name' => 'Link', 'url' => 'https://link.'.$root.'/sso/connect?redirect='.urlencode('https://link.'.$root.'/dashboard'), 'icon' => 'link.svg'], ['name' => 'Frontdesk', 'url' => 'https://frontdesk.'.$root.'/sso/connect?redirect='.urlencode('https://frontdesk.'.$root.'/dashboard'), 'icon' => 'frontdesk.svg'], - ['name' => 'Care', 'url' => 'https://care.'.$root.'/sso/connect?redirect='.urlencode('https://care.'.$root.'/dashboard'), 'icon' => 'care.svg'], ['name' => 'SMS', 'url' => 'https://sms.'.$root, 'icon' => 'sms.svg'], ['name' => 'Bird', 'url' => 'https://bird.'.$root, 'icon' => 'bird.svg'], ['name' => 'Mail', 'url' => 'https://mail.'.$root, 'icon' => 'mail.svg'], diff --git a/resources/css/app.css b/resources/css/app.css index b16788b..e08358f 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -165,33 +165,36 @@ html.qr-mobile-page body { } } -/* Ladill app launcher — cap at 6 rows (18 apps), scroll with visible indicator */ +/* Ladill app launcher — cap at 6 rows (18 apps), always-visible scroll indicator */ .ladill-launcher-apps { max-height: calc(6 * 5.25rem + 5 * 0.25rem); overflow-y: scroll; overscroll-behavior: contain; scrollbar-gutter: stable; scrollbar-width: thin; - scrollbar-color: rgb(203 213 225) rgb(248 250 252); + scrollbar-color: rgb(148 163 184) rgb(241 245 249); margin-right: -0.25rem; padding-right: 0.25rem; } .ladill-launcher-apps::-webkit-scrollbar { + -webkit-appearance: none; width: 8px; } .ladill-launcher-apps::-webkit-scrollbar-track { - background: rgb(248 250 252); + background: rgb(241 245 249); border-radius: 9999px; } .ladill-launcher-apps::-webkit-scrollbar-thumb { - background-color: rgb(203 213 225); + background-color: rgb(148 163 184); border-radius: 9999px; min-height: 2.5rem; + border: 2px solid rgb(241 245 249); + background-clip: padding-box; } .ladill-launcher-apps::-webkit-scrollbar-thumb:hover { - background-color: rgb(148 163 184); + background-color: rgb(100 116 139); } diff --git a/resources/views/partials/launcher.blade.php b/resources/views/partials/launcher.blade.php index c2be733..ac7ad55 100644 --- a/resources/views/partials/launcher.blade.php +++ b/resources/views/partials/launcher.blade.php @@ -10,7 +10,6 @@ config('ladill_launcher.apps', []), fn (array $app) => parse_url($app['url'], PHP_URL_HOST) !== $selfHost )); - $launcherOverflows = count($launcherApps) > 18; @endphp @if (! empty($launcherApps))