mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-12-26 23:26:47 +01:00
Update w/ static param
This commit is contained in:
@@ -3,7 +3,8 @@
|
||||
require_once '../../includes/config.php';
|
||||
require_once '../../includes/functions.php';
|
||||
$color = getColorOpt();
|
||||
$static = defined('RASPI_UI_STATIC_LOGO') && RASPI_UI_STATIC_LOGO === true;
|
||||
$static = (isset($_GET['static']) && $_GET['static'] == '1') ||
|
||||
(defined('RASPI_UI_STATIC_LOGO') && RASPI_UI_STATIC_LOGO === true);
|
||||
?>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
@@ -16,23 +17,27 @@ $static = defined('RASPI_UI_STATIC_LOGO') && RASPI_UI_STATIC_LOGO === true;
|
||||
xml:space="preserve"
|
||||
id="svg2"
|
||||
version="1.1">
|
||||
<style>
|
||||
<?php if (!$static): ?>
|
||||
<style>
|
||||
.wave {
|
||||
opacity: 0;
|
||||
opacity: 0.4;
|
||||
animation: pulse 1.8s infinite;
|
||||
}
|
||||
.wave1 { animation-delay: 0.3s; }
|
||||
.wave2 { animation-delay: 0.6s; }
|
||||
|
||||
@keyframes pulse {
|
||||
0% { opacity: 0; }
|
||||
0% { opacity: 0.4; }
|
||||
20% { opacity: 1; }
|
||||
60% { opacity: 0; }
|
||||
100% { opacity: 0; }
|
||||
60% { opacity: 0.4; }
|
||||
100% { opacity: 0.4; }
|
||||
}
|
||||
<?php else: ?>
|
||||
.wave {
|
||||
opacity: 1.0;
|
||||
}
|
||||
</style>
|
||||
<?php endif; ?>
|
||||
</style>
|
||||
|
||||
<!-- inner solid circle -->
|
||||
<circle cx="128" cy="384" r="60" fill="<?php echo htmlspecialchars($color, ENT_QUOTES, 'UTF-8'); ?>"/>
|
||||
|
||||
@@ -915,7 +915,7 @@ function renderStatus($hostapd_led, $hostapd_status, $memused_led, $memused, $cp
|
||||
?>
|
||||
<div class="row g-0">
|
||||
<div class="col-4 ms-2 sidebar-brand-icon">
|
||||
<img src="app/img/raspAP-logo.php" class="navbar-logo" width="70" height="70">
|
||||
<img src="app/img/raspAP-logo.php?static=1" class="navbar-logo" width="70" height="70">
|
||||
</div>
|
||||
<div class="col ml-2">
|
||||
<div class="ml-1 sb-status">Status</div>
|
||||
|
||||
Reference in New Issue
Block a user