Alpha V2.5.22

This commit is contained in:
Flatlogic Bot 2026-03-16 23:00:20 +00:00
parent e3787e5b78
commit 549e395a81
4 changed files with 15 additions and 2 deletions

View File

@ -437,4 +437,16 @@
.modal-close:hover {
color: #fff;
}
/* Member link specific styling in guilde.php */
.member-table a {
color: #ffffff !important;
text-decoration: underline !important;
text-underline-offset: 4px;
transition: color 0.2s;
}
.member-table a:hover {
color: #88c0d0 !important;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

View File

@ -119,6 +119,7 @@ if ($in_guild) {
<title><?php echo $in_guild ? htmlspecialchars($user_guild_info['guild_name']) : 'Guildes'; ?> - Nexus</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
<style>
body { background: #000; color: #fff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; }
#main-wrapper { display: flex; flex-direction: column; min-height: 100vh; }

View File

@ -81,7 +81,7 @@ if (isset($_SESSION['user_id'])) {
<nav class="nav-wrapper">
<a href="index.php" class="nav-btn"><i class="fa-solid fa-earth-europe"></i> NEXUS</a>
<?php if (isset($_SESSION["user_id"])): ?>
<button type="button" class="nav-btn" onclick="if(document.getElementById('profileModal')){document.getElementById('profileModal').style.display='flex'}else{window.location.href='index.php'}">
<button type="button" class="nav-btn" onclick="loadProfile(<?php echo (int)$_SESSION['user_id']; ?>)">
<i class="fa-solid fa-id-card"></i> PROFIL
</button>
<a href="guilde.php" class="nav-btn">
@ -131,4 +131,4 @@ if (isset($_SESSION['user_id'])) {
<?php endif; ?>
</div>
</div>
</header>
</header>