diff --git a/config/autoload/version.global.php b/config/autoload/version.global.php new file mode 100644 index 0000000000000000000000000000000000000000..870efbc5bf846cf6addc765e7985a13f4f1f76de --- /dev/null +++ b/config/autoload/version.global.php @@ -0,0 +1,11 @@ +<?php + +return [ + 'unicaen-app' => [ + 'app_infos' => [ + 'version' => '2.0.0', + 'date' => '10/07/2024', + ], + ], + 'comment' => 'Fichier généré manuellement', +]; diff --git a/module/Application/view/application/index/index.phtml b/module/Application/view/application/index/index.phtml index 26f2b9df3fd7c20c64bca0b3c16c860828730b4b..c35d34661e2c66a1901967c21c54ea97751b800e 100755 --- a/module/Application/view/application/index/index.phtml +++ b/module/Application/view/application/index/index.phtml @@ -75,14 +75,14 @@ use UnicaenUtilisateur\Entity\Db\UserInterface; .pill { border-radius:0.25rem; margin-bottom: 0.1rem; - padding: 0.1rem; + padding: 0.1rem 0.9rem 0.1rem 0.9rem; /*background: #79b2a6;*/ - background: rgb(217, 237, 247); - color: rgb(49, 112, 143); + background: var(--unistrap-color-light); + color: var(--unistrap-color-dark); } .pill:hover { - background: lightgrey; + background: var(--unistrap-color-main); cursor: pointer; } </style> \ No newline at end of file diff --git a/module/Application/view/layout/layout.phtml b/module/Application/view/layout/layout.phtml index e0ae78e92aed18b5cec7b4d5b258a8ccfdef896a..7f61ceada5661aa6385f69e3ca7dba0d1d8ba187 100755 --- a/module/Application/view/layout/layout.phtml +++ b/module/Application/view/layout/layout.phtml @@ -30,7 +30,7 @@ echo $this->doctype(); <?php echo $this->headScript(); ?> </head> -<body class="unistrap unistrap-comm unistrap-th-emc2 unistrap-bg-dark unistrap-sticky-header flex-column"> +<body class="unistrap unistrap-comm unistrap-th-support-app unistrap-bg-dark unistrap-sticky-header flex-column"> <!-- HEADER --------------------------------------> <header> <nav id="navbar" class="navbar navbar-main navbar-lg navbar-shadow navbar-expand-lg navbar-dark bg-dark" role="navigation"> diff --git a/public/css/local.css b/public/css/local.css index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..89fd161798443894e7b8f05559d09482a61c067e 100644 --- a/public/css/local.css +++ b/public/css/local.css @@ -0,0 +1,37 @@ +footer div#etablissement { + /** positionnement du logo **/ + position: relative; + top: 50px; + display: inline-block; + height:85px; + width:160px; + /** lien et propriétés basiques **/ + background-repeat: no-repeat; + background-image: url('../img/unicaen-logo-noir.svg'); + /** redimensionnement **/ + background-size: 160px 60px; +} + +.unistrap.unistrap-th-support-app { + --unistrap-color-main: hsl(210, 30%, 58%); + --unistrap-color-dark: hsl(210, 30%, 28%); + --unistrap-color-light: hsl(210, 30%, 88%); + + --bs-success: rgb(0, 100, 0); + --bs-success-rgb: 0, 100, 0; + --bs-danger: rgb(200, 0, 0); + --bs-danger-rgb: 200,0,0; + --bs-info: rgb(0, 0, 100); + --bs-info-rgb: 0,0,255; + --bs-warning: Sienna; + --bs-warning-rgb: 160, 82, 45; + --bs-primary: #0d6efd; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary: #6c757d; + --bs-secondary-rgb: 108, 117, 125; +} + + div.nav-foot ul.navigation li a { + font-variant: small-caps; + text-decoration: none; +} \ No newline at end of file