From: Vincent Vanwaelscappel Date: Tue, 23 Apr 2024 08:37:46 +0000 (+0200) Subject: wip #6858 @1 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=9a07e49bc1ce6f6318becb4618c48f8040f68cf9;p=bastide-resah.git wip #6858 @1 --- diff --git a/config/app.php b/config/app.php index 9207160..d94b39e 100644 --- a/config/app.php +++ b/config/app.php @@ -83,7 +83,7 @@ return [ | */ - 'locale' => 'en', + 'locale' => 'fr', /* |-------------------------------------------------------------------------- @@ -96,7 +96,7 @@ return [ | */ - 'fallback_locale' => 'en', + 'fallback_locale' => 'fr', /* |-------------------------------------------------------------------------- diff --git a/config/backpack/base.php b/config/backpack/base.php index 68770c7..4c490e7 100644 --- a/config/backpack/base.php +++ b/config/backpack/base.php @@ -24,7 +24,7 @@ return [ // ---- // Project name. Shown in the window title. - 'project_name' => 'Backpack Admin Panel', + 'project_name' => 'Bastide Resah Admin', // When clicking on the admin panel's top-left logo/name, // where should the user be redirected? @@ -49,8 +49,9 @@ return [ // CSS files that are loaded in all pages, using Laravel's asset() helper 'styles' => [ - 'packages/backpack/base/css/bundle.css', // has primary color electric purple (backpack default) - // 'packages/backpack/base/css/blue-bundle.css', // has primary color blue + //'packages/backpack/base/css/bundle.css', // has primary color electric purple (backpack default) + 'packages/backpack/base/css/blue-bundle.css', // has primary color blue + 'css/admin.css', // Here's what's inside the bundle: // 'packages/@digitallyhappy/backstrap/css/style.min.css', @@ -85,10 +86,10 @@ return [ // ------ // Menu logo. You can replace this with an tag if you have a logo. - 'project_logo' => 'Backpack', + 'project_logo' => '', // Show / hide breadcrumbs on admin panel pages. - 'breadcrumbs' => true, + 'breadcrumbs' => false, // Horizontal navbar classes. Helps make the admin panel look similar to your project's design. 'header_class' => 'app-header bg-light border-0 navbar', @@ -119,13 +120,13 @@ return [ // change background color with bg-dark, bg-primary, bg-secondary, bg-danger, bg-warning, bg-success, bg-info, bg-blue, bg-light-blue, bg-indigo, bg-purple, bg-pink, bg-red, bg-orange, bg-yellow, bg-green, bg-teal, bg-cyan, bg-white // Developer or company name. Shown in footer. - 'developer_name' => 'Cristian Tabacitu', + 'developer_name' => 'Fluidbook', // Developer website. Link in footer. Type false if you want to hide it. - 'developer_link' => 'http://tabacitu.ro', + 'developer_link' => 'http://www.fluidbook.com', // Show powered by Laravel Backpack in the footer? true/false - 'show_powered_by' => true, + 'show_powered_by' => false, // ------- // SCRIPTS diff --git a/public/css/admin.css b/public/css/admin.css new file mode 100644 index 0000000..7f9743b --- /dev/null +++ b/public/css/admin.css @@ -0,0 +1,5 @@ +.app-header { + height: 100px; + flex: 0 0 100px; +} +/*# sourceMappingURL=admin.css.map */ \ No newline at end of file diff --git a/public/css/admin.css.map b/public/css/admin.css.map new file mode 100644 index 0000000..bc5b477 --- /dev/null +++ b/public/css/admin.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["admin.less"],"names":[],"mappings":"AAAA;EACI,aAAA;EACA,eAAA","file":"admin.css"} \ No newline at end of file diff --git a/public/css/admin.less b/public/css/admin.less new file mode 100644 index 0000000..6b95bae --- /dev/null +++ b/public/css/admin.less @@ -0,0 +1,4 @@ +.app-header { + height: 100px; + flex: 0 0 100px; +}