]> _ Git - bastide-resah.git/commitdiff
wip #6858 @1
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 23 Apr 2024 08:37:46 +0000 (10:37 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 23 Apr 2024 08:37:46 +0000 (10:37 +0200)
config/app.php
config/backpack/base.php
public/css/admin.css [new file with mode: 0644]
public/css/admin.css.map [new file with mode: 0644]
public/css/admin.less [new file with mode: 0644]

index 9207160dc8f7ac5ec15353310886f8d17477d65a..d94b39ea6284927555e71418416f5078b80fbe1a 100644 (file)
@@ -83,7 +83,7 @@ return [
     |
     */
 
-    'locale' => 'en',
+    'locale' => 'fr',
 
     /*
     |--------------------------------------------------------------------------
@@ -96,7 +96,7 @@ return [
     |
     */
 
-    'fallback_locale' => 'en',
+    'fallback_locale' => 'fr',
 
     /*
     |--------------------------------------------------------------------------
index 68770c70c6a26e07e111f188dddc8b0a43def592..4c490e7fe6faacbe3cebd096f5babd151b32f869 100644 (file)
@@ -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 <img> tag if you have a logo.
-    'project_logo'   => '<b>Back</b>pack',
+    'project_logo'   => '<img src="/images/logo-bastide.svg" height="55">',
 
     // 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 (file)
index 0000000..7f9743b
--- /dev/null
@@ -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 (file)
index 0000000..bc5b477
--- /dev/null
@@ -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 (file)
index 0000000..6b95bae
--- /dev/null
@@ -0,0 +1,4 @@
+.app-header {
+    height: 100px;
+    flex: 0 0 100px;
+}