From c2ca853105f5466cba4d3680a6a6c89d30eb5eb4 Mon Sep 17 00:00:00 2001 From: soufiane Date: Thu, 10 Apr 2025 12:40:37 +0200 Subject: [PATCH] wait #7427 @0:25 --- .../views/helpers/HeaderContactNav.php | 2 +- .../application/views/helpers/HeaderLogo.php | 4 +- images/logo/leave-2.svg | 19 +++++++++ images/logo/text-dark-2.svg | 41 +++++++++++++++++++ images/logo/text-white-2.svg | 41 +++++++++++++++++++ less/101-header.less | 4 ++ 6 files changed, 108 insertions(+), 3 deletions(-) create mode 100644 images/logo/leave-2.svg create mode 100644 images/logo/text-dark-2.svg create mode 100644 images/logo/text-white-2.svg diff --git a/framework/application/views/helpers/HeaderContactNav.php b/framework/application/views/helpers/HeaderContactNav.php index 82486c6..b5fdb0e 100644 --- a/framework/application/views/helpers/HeaderContactNav.php +++ b/framework/application/views/helpers/HeaderContactNav.php @@ -7,7 +7,7 @@ class Fluidbook_View_Helper_HeaderContactNav extends CubeIT_View_Helper_Abstract public function headerContactNav() { $res = array(); - $res[] = $this->linkInternal(null, 'internal:agences',array('class'=>'agencies')); + $res[] = $this->linkInternal(__('Agences'), 'internal:agences',array('class'=>'agencies')); $res[] = $this->linkQuote(__('Demandez un devis'),'',true); return $this->htmlElement($this->listUnordered($res), 'nav', array('id' => 'contactnav', 'role' => 'navigation')); diff --git a/framework/application/views/helpers/HeaderLogo.php b/framework/application/views/helpers/HeaderLogo.php index e9a664a..b70fc84 100644 --- a/framework/application/views/helpers/HeaderLogo.php +++ b/framework/application/views/helpers/HeaderLogo.php @@ -5,8 +5,8 @@ class Fluidbook_View_Helper_HeaderLogo extends CubeIT_View_Helper_Abstract { * @return string */ public function headerLogo() { - $logos = $this->image('/images/logo/leave.svg', 'Fluidbook logo', -1, -1, array('class' => 'leave')); - $logos .= $this->htmlElement($this->image('/images/logo/text-white.svg', 'Fluidbook', -1, -1, array('class' => 'text-white')) . $this->image('/images/logo/text-dark.svg', 'Fluidbook', -1, -1, array('class' => 'text-dark')), 'div', array('class' => 'text')); + $logos = $this->image('/images/logo/leave-2.svg', 'Fluidbook logo', -1, -1, array('class' => 'leave')); + $logos .= $this->htmlElement($this->image('/images/logo/text-white-2.svg', 'Fluidbook', -1, -1, array('class' => 'text-white')) . $this->image('/images/logo/text-dark-2.svg', 'Fluidbook', -1, -1, array('class' => 'text-dark')), 'div', array('class' => 'text')); return $this->link($logos, '/', array('class' => 'logo')); } diff --git a/images/logo/leave-2.svg b/images/logo/leave-2.svg new file mode 100644 index 0000000..363978c --- /dev/null +++ b/images/logo/leave-2.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/logo/text-dark-2.svg b/images/logo/text-dark-2.svg new file mode 100644 index 0000000..0076da9 --- /dev/null +++ b/images/logo/text-dark-2.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/logo/text-white-2.svg b/images/logo/text-white-2.svg new file mode 100644 index 0000000..5925c71 --- /dev/null +++ b/images/logo/text-white-2.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/less/101-header.less b/less/101-header.less index f0c551f..afa0d8c 100644 --- a/less/101-header.less +++ b/less/101-header.less @@ -70,6 +70,8 @@ header#h { position: absolute; top: 0; left: 0; + width: 32px; + height: 100%; } .text { @@ -87,6 +89,8 @@ header#h { position: absolute; left: 35px; top: 13px; + width: 174px; + height: 100%; } .text-white { -- 2.39.5