Moved older files to their directory
| Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB | 
| Before Width: | Height: | Size: 392 B After Width: | Height: | Size: 392 B | 
| Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB | 
| Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB | 
| @@ -162,6 +162,10 @@ | ||||
|     cursor: pointer; | ||||
| } | ||||
| 
 | ||||
| .menuFactory { | ||||
|     color: lightgray; | ||||
| } | ||||
| 
 | ||||
| .menuItem:hover { | ||||
|     background: lightgray; | ||||
|     color: white; | ||||
| @@ -14,4 +14,10 @@ function changeAdvancedVisibility(){ | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| document.getElementById("optional").addEventListener("click", changeAdvancedVisibility); | ||||
| function createMessageTab() { | ||||
|     var items = document.getElementById("listItems"); | ||||
|     items.innerHTML += '<div class="menuItem">Item</div>'; | ||||
| } | ||||
| 
 | ||||
| $("#optional").click(changeAdvancedVisibility); | ||||
| $(".menuFactory").click(createMessageTab); | ||||
| @@ -4,6 +4,7 @@ | ||||
|     <title>R11 MockedServices</title> | ||||
|     <meta charset="utf-8"> | ||||
|     <link rel="stylesheet" href="../static/css/design.css" type="text/css"> | ||||
|     <link rel="stylesheet" href="../static/Dependency/fontello-plus/css/fontello.css" type="text/css"/> | ||||
|     <link rel="preconnect" href="https://fonts.gstatic.com"> | ||||
|     <link href="https://fonts.googleapis.com/css2?family=Acme&family=Josefin+Slab:wght@500&display=swap" rel="stylesheet"> | ||||
|     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||||
| @@ -14,12 +15,10 @@ | ||||
|         <div id="selectMenu"> | ||||
|             <div id="selectMenuContent" style="display: none;"> | ||||
|                 <div id="selectMenuHead" class="articleHead">List</div> | ||||
|                 <div class="menuItemSelected">Item</div> | ||||
|                 <div class="menuItem">Item</div> | ||||
|                 <div class="menuItem">Item</div> | ||||
|                 <div class="menuItem">Item</div> | ||||
|                 <div class="menuItem">Item</div> | ||||
|                 <div class="menuItem">Item</div> | ||||
|                     <div id="listItems"> | ||||
|                         <div class="menuItemSelected">Item</div> | ||||
|                     </div> | ||||
|                 <div class="menuItem menuFactory"><i class="icon-plus"></i></div> | ||||
|             </div> | ||||
| 
 | ||||
|         </div> | ||||