noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 15/15: Merge branch 'dev-8-select-box'


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 15/15: Merge branch 'dev-8-select-box'
Date: Mon, 25 Jan 2021 18:56:24 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit ce0a8f85ff1344ae6e3c3111ea9ab217bea136ba
Merge: 3f64888 6f1f8d5
Author: sparkyx <danydb@noalyss.eu>
AuthorDate: Tue Jan 26 00:46:38 2021 +0100

    Merge branch 'dev-8-select-box'

 html/js/infobulle.js                      |  44 ++++++++++++
 include/anc_great_ledger.inc.php          |   9 ++-
 include/lib/select_box.class.php          | 110 +++---------------------------
 include/template/ledger_detail_bottom.php |   2 +-
 scenario/select-box-test.php              |  35 ++++++----
 5 files changed, 82 insertions(+), 118 deletions(-)

diff --cc scenario/select-box-test.php
index d439de5,9825045..a739d02
--- a/scenario/select-box-test.php
+++ b/scenario/select-box-test.php
@@@ -3,47 -3,16 +3,47 @@@
      <script src="prototype.js"></script>
  
      <style>
 +        /* The container <div> - needed to position the dropdown content */
 +        .select_box{
 +            position: relative;
 +            display: inline-block;
 +        }
 +
 +        /* Dropdown Content (Hidden by Default) */
 +        .dropdown-content {
 +            display: none;
 +            position: absolute;
 +            background-color: #f9f9f9;
 +            min-width: 160px;
 +            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 +            z-index: 1;
 +        }
 +
 +        /* Links inside the dropdown */
 +        .dropdown-content a {
 +            color: black;
 +            padding: 12px 16px;
 +            text-decoration: none;
 +            display: block;
 +        }
 +
 +        /* Change color of dropdown links on hover */
 +        .dropdown-content a:hover {background-color: #f1f1f1}
 +
 +        /* Show the dropdown menu on hover */
 +        .dropdown:hover .dropdown-content {
 +            display: block;
 +        }
        .select_box {
-       border:solid 0.5px darkblue;
-       background:white;
-       width:455px;
-       max-width:250px;
-       padding:3px;
-       margin:0px;
-       display:none;
-       top:-17px;
-       position:absolute;
+           border:solid 0.5px darkblue;
+           background:white;
+           width:455px;
+           max-width:250px;
+           padding:3px;
+           margin:0px;
+           display:none;
+           position:absolute;
+           z-index:10;
        }
       div.select_box ul {
         list-style:none;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]