]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/commitdiff
Back to square one -.-
authorValerie Pond <redacted>
Sun, 15 Jan 2023 19:59:19 +0000 (19:59 +0000)
committerValerie Pond <redacted>
Sun, 15 Jan 2023 19:59:19 +0000 (19:59 +0000)
css/unrealircd-admin.css
header.php
js/unrealircd-admin.js

index d5fa9515fc2e7993e04def55f37bf37315417b99..e4591e5b60aa9d943988a14702e188cf607c0ea5 100644 (file)
@@ -107,7 +107,7 @@ footer {
 
 body {
        padding-top: 45px;
-       background-image: url("../img/linen.png");
+       background-image: url("https://www.unrealircd.org/assets/img/bg/linen.png");
        display: flex;
        flex-direction: column;
 }
@@ -197,10 +197,10 @@ body {
 
 .table-striped>tbody>tr:nth-child(even)>td, 
 .table-striped>tbody>tr:nth-child(even)>th {
-   background-color: #c9c9c949;
+   background-color: #a5a5a549;
  }
  .table-striped>tbody>tr:nth-child(odd)>td, 
  .table-striped>tbody>tr:nth-child(odd)>th {
-       background-color: #ffffff;
+       background-color: #ffffff00;
   }
        
\ No newline at end of file
index 364ba2584dce19a67bdc5fa7d2dac38c82adb09e..c0241787a39490a73be9e894900ef36bd55c892a 100644 (file)
@@ -18,7 +18,7 @@
 <script src="<?php echo BASE_URL; ?>js/unrealircd-admin.js"></script>
 <title>UnrealIRCd Panel</title>
 <link rel="icon" type="image/x-icon" href="<?php echo BASE_URL; ?>img/favicon.ico">
-<link href="<?php echo UPATH; ?>css/unrealircd-admin.css" rel="stylesheet">
+<link href="<?php echo BASE_URL; ?>css/unrealircd-admin.css" rel="stylesheet">
 </head>
 <body role="document">
 <div class="container-fluid">
@@ -65,3 +65,4 @@ foreach($pages as $name=>$page)
 </div>
 
 <div class="container-fluid" role="main">
+<br><br><br><?php var_dump(BASE_URL . "css/unrealircd-admin.css");
\ No newline at end of file
index d920ff570b70f29b71ba42d13841b62102339b96..c2736018b92bad6a490c3f152688e19c9068ba1b 100644 (file)
@@ -1,19 +1,4 @@
-/* Overview menu selector */
-const tabs = document.querySelectorAll('[data-tab-target]');
-const tabContents = document.querySelectorAll('[data-tab-content]')
-tabs.forEach(tab => {
-    tab.addEventListener('click', () => {
-        const target = document.querySelector(tab.dataset.tabTarget)
-        tabContents.forEach(tabContent => {
-            tabContent.classList.remove('active')
-        })
-        tabs.forEach(tab => {
-            tab.classList.remove('active')
-        })
-        tab.classList.add('active');
-        target.classList.add('active');
-    })
-})
+
 
 
 /* TKL (un)select all checkbox */