[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 80/86: Cosmetic : animate bar menu
From: |
dwm |
Subject: |
[Noalyss-commit] [noalyss] 80/86: Cosmetic : animate bar menu |
Date: |
Thu, 19 Sep 2024 02:42:04 -0400 (EDT) |
sparkyx pushed a commit to branch unstable
in repository noalyss.
commit ae9752376787458bf770f549389a71dceae135e3
Author: sparkyx <danydb@noalyss.eu>
AuthorDate: Tue Sep 17 23:08:50 2024 +0200
Cosmetic : animate bar menu
---
html/css/style-classic7.css | 33 ++++++++++++++++++++++++++++++++-
html/lang/en_US/LC_MESSAGES/messages.po | 10 +++++-----
include/template/menu.php | 2 +-
3 files changed, 38 insertions(+), 7 deletions(-)
diff --git a/html/css/style-classic7.css b/html/css/style-classic7.css
index e3a171e0c..3ea31702c 100644
--- a/html/css/style-classic7.css
+++ b/html/css/style-classic7.css
@@ -25,6 +25,8 @@ BODY {
color:darkblue !important;
background-color:#FCFDFD;
--hover : rgba(108, 130, 208, 0.9);
+ --border-size:4px;
+ --accent-color:lightblue;
}
input{
font-family: 'OpenSansRegular';
@@ -3280,6 +3282,8 @@ li.li-active {
background-color: navy !important;
color:white !important;
border-radius: 0px;
+ transition: all 300ms ease-in-out;
+
}
#module .nav-item-active , #module .nav-item-active > a.nav-link{
background-color: #5d90cd !important;
@@ -3653,4 +3657,31 @@ h2.h-section {
font-size: 80%;
font-variant-caps: normal;
}
-}
\ No newline at end of file
+/***
+ * Animate menu
+ *
+ */
+
+.nav-item {
+ position:relative;
+
+}
+
+.nav-item.nav-item-underline::before {
+ content:'';
+ left:0;
+ bottom:0;
+ right:0;
+ position:absolute;
+ height:var(--border-size);
+ background-color:orangered;
+ transform:scaleX(0);
+ transition:transform 300ms ease-in-out;
+}
+
+.nav-item.nav-item-underline:hover::before,
+.nav-item.nav-item-underline:focus::before
+{
+ transform:scaleX(1);
+}
+
diff --git a/html/lang/en_US/LC_MESSAGES/messages.po
b/html/lang/en_US/LC_MESSAGES/messages.po
index 63afdab2b..1c3cdee69 100644
--- a/html/lang/en_US/LC_MESSAGES/messages.po
+++ b/html/lang/en_US/LC_MESSAGES/messages.po
@@ -14,7 +14,7 @@ msgstr ""
"Project-Id-Version: NOALYSS 672\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-07 17:50+0200\n"
-"PO-Revision-Date: 2024-09-07 18:03+0200\n"
+"PO-Revision-Date: 2024-09-10 10:26+0200\n"
"Last-Translator: dany <dany@galactee.intra-alchimerys.be>\n"
"Language-Team: French <kde-i18n-doc@kde.org>\n"
"Language: en_US\n"
@@ -14534,7 +14534,7 @@ msgstr "General Ledger"
#: include/ext/tva/form_parameter.php:68 include/ext/tva/form_parameter.php:71
#: include/ext/tva/form_parameter.php:72
msgid "Grille 00 : opérations soumises à un régime particulier"
-msgstr "Grid 00: transactions subject to special rules"
+msgstr "Grid 00: transactions subject to special rules "
#: include/ext/tva/form_parameter.php:69 include/ext/tva/form_parameter.php:72
#: include/ext/tva/form_parameter.php:73
@@ -15112,7 +15112,7 @@ msgstr "Call History"
#: include/ext/skel/index.php:46 include/ext/tva/index.php:35
#: include/ext/tva/index.php:38 include/ext/tva/index.php:39
msgid "Historique des déclarations TVA"
-msgstr "History of VAT returns"
+msgstr "History"
#: include/ext/rapport_avance/index.php:62
#: include/ext/rapport_avance/index.php:61
@@ -17194,7 +17194,7 @@ msgstr "Style of row must be a number"
#: include/ext/invoicing/include/invoice_send_mail.inc.php:65
#: include/ext/invoicing/include/invoice_send_mail.inc.php:69
msgid "Le sujet est obligatoire"
-msgstr "The subject is compulsory"
+msgstr "The subject is mandatory"
#: include/class_anc_key.php:150 include/class/class_anc_key.php:150
#: include/class/anc_key.class.php:150 include/class/anc_key.class.php:158
@@ -18112,7 +18112,7 @@ msgstr "Listing"
#: include/ext/skel/index.php:45 include/ext/tva/index.php:34
#: include/ext/tva/index.php:37 include/ext/tva/index.php:38
msgid "Listing Assujetti"
-msgstr "Subject Listing"
+msgstr "Customer Listing"
#: include/ext/skel/index.php:45 include/ext/tva/index.php:34
#: include/ext/tva/index.php:37 include/ext/tva/index.php:38
diff --git a/include/template/menu.php b/include/template/menu.php
index 55567578e..de87e4c19 100644
--- a/include/template/menu.php
+++ b/include/template/menu.php
@@ -33,7 +33,7 @@
}
else {
$js="";
- $class_list_element="nav-item";
+ $class_list_element="nav-item nav-item-underline";
$class_link="nav-link";
if ( $amenu[$i]['me_url']!='')
- [Noalyss-commit] [noalyss] 23/86: Merge branch 'pre-stable' into stable, (continued)
- [Noalyss-commit] [noalyss] 23/86: Merge branch 'pre-stable' into stable, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 28/86: Cosmetic improve widget bookmark color for hover, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 19/86: Cosmetic, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 34/86: RECONCILE : fix bug : sum incorrect if several items, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 53/86: Merge branch 'stable' into unstable, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 59/86: Set the DB to the version 202 for NOALYSS9.3 correct make-sql, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 66/86: Cosmetic , missing bcscale and code cleaning, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 56/86: Merge branch 'stable' into pre-stable, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 75/86: CSS font h2, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 78/86: add detail, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 80/86: Cosmetic : animate bar menu,
dwm <=
- [Noalyss-commit] [noalyss] 84/86: color, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 11/86: PHP8.2 compatility : strip_tags null, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 20/86: C0MENU : bug javascript Uniquement note de débit ou crédit ne fonctionne pas, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 76/86: Merge branch 'pre-stable' into stable, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 26/86: Cosmetic add inner_box2, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 43/86: Fix Create user , password not set, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 02/86: Merge branch 'pre-stable' into stable, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 14/86: Cosmetic #0002375: Menu COMPTA/LET/LETCARD : le nom de la fiche n'apparaît pas., dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 13/86: PHP8.2 compatility : strip_tags null, dwm, 2024/09/19
- [Noalyss-commit] [noalyss] 22/86: Cosmetic, dwm, 2024/09/19