fix the banner speed
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 47s
Tests / PHPUnit (push) Successful in 1m22s

This commit is contained in:
root
2026-09-02 23:33:05 -04:00
parent 8d644a2c85
commit 88772c3ea0
3 changed files with 2 additions and 96 deletions
+2 -2
View File
@@ -217,7 +217,7 @@
.ticker-track {
display: flex;
width: max-content;
animation: ticker-scroll 17s linear infinite;
animation: ticker-scroll 40s linear infinite;
will-change: transform;
}
@@ -284,7 +284,7 @@
.carousel-caption { left: 5%; right: 5%; max-width: none; padding: 1.1rem 1.25rem; bottom: 6%; }
.carousel-caption h1 { font-size: 1.2rem; }
.carousel-caption p { font-size: 0.85rem; }
.ticker-track { animation-duration: 10s; }
.ticker-track { animation-duration: 45s; }
.ticker-label, .ticker-item { min-height: 48px; }
.ticker-item { padding: 0 1.25rem; }
}
-60
View File
@@ -1,60 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Support Requests</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Favicon -->
<link href="<?= base_url('assets/images/favicon.ico') ?>" rel="icon">
</head>
<body>
<?php include(__DIR__ . '/partials/header.php'); ?>
<?php include(__DIR__ . '/partials/navbar.php'); ?>
<div class="container-fluid">
<div class="row">
<main class="col-md-9 ml-sm-auto col-lg-10 px-md-4">
<div class="pt-3 pb-2 mb-3" style="margin-left: -2in;">
<h1 class="h2">My Support Requests</h1>
<h5 class="h5 mt-2">View your submitted support requests</h5>
</div>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Subject</th>
<th>Message</th>
<th>Status</th>
<th>Created At</th>
</tr>
</thead>
<tbody>
<?php if (!empty($requests) && is_array($requests)) : ?>
<?php foreach ($requests as $request) : ?>
<tr>
<td><?= esc($request['subject']); ?></td>
<td><?= esc($request['message']); ?></td>
<td><?= esc($request['status']); ?></td>
<td><?= esc(!empty($request['created_at']) ? local_datetime($request['created_at'], 'm-d-Y H:i') : '') ?></td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr>
<td colspan="4">No support requests found.</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</main>
</div>
</div>
<?php include(__DIR__ . '/partials/footer.php'); ?>
</body>
</html>
-34
View File
@@ -1,34 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>API Docs Swagger UI</title>
<link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist@5/swagger-ui.css" />
<style>
body { margin: 0; background: #f7f7f7; }
.topbar { display:none; }
</style>
</head>
<body>
<div id="swagger-ui"></div>
<script src="https://unpkg.com/swagger-ui-dist@5/swagger-ui-bundle.js"></script>
<script>
(function () {
const specs = <?php echo json_encode($specs ?? [], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES); ?>;
window.ui = SwaggerUIBundle({
dom_id: '#swagger-ui',
urls: specs,
urlsPrimaryName: (specs[0] && specs[0].name) || undefined,
deepLinking: true,
docExpansion: 'list',
filter: true,
layout: 'BaseLayout',
presets: [SwaggerUIBundle.presets.apis],
});
})();
</script>
</body>
</html>