changed favorite and header icons
This commit is contained in:
@@ -131,7 +131,7 @@ $counts['total'] = count($all_contributions);
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Moderation — <?= htmlspecialchars($municipality['name']) ?></title>
|
<title>Moderation — <?= htmlspecialchars($municipality['name']) ?></title>
|
||||||
<link rel="icon" href="<?= htmlspecialchars($municipality['logo_path'] ?? 'assets/icon-municipality.png') ?>" type="image/png">
|
<link rel="icon" href="assets/shield-halved-solid-off-black.png" type="image/png">
|
||||||
|
|
||||||
<!-- Loads CSS Dependencies -->
|
<!-- Loads CSS Dependencies -->
|
||||||
|
|
||||||
|
|||||||
BIN
public/assets/lock-solid-off-black.png
Normal file
BIN
public/assets/lock-solid-off-black.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
public/assets/scale-balanced-solid-off-black.png
Normal file
BIN
public/assets/scale-balanced-solid-off-black.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
BIN
public/assets/shield-halved-solid-off-black.png
Normal file
BIN
public/assets/shield-halved-solid-off-black.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
BIN
public/assets/user-group-solid-off-black.png
Normal file
BIN
public/assets/user-group-solid-off-black.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/user-group-solid-off-white.png
Normal file
BIN
public/assets/user-group-solid-off-white.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
@@ -11,7 +11,7 @@ $municipality = $stmt->fetch();
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Impressum — <?= htmlspecialchars($municipality['name']) ?></title>
|
<title>Impressum — <?= htmlspecialchars($municipality['name']) ?></title>
|
||||||
<link rel="icon" href="<?= htmlspecialchars($municipality['logo_path'] ?? 'assets/icon-municipality.png') ?>" type="image/png">
|
<link rel="icon" href="assets/scale-balanced-solid-off-black.png" type="image/png">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
||||||
<link rel="stylesheet" href="styles.css">
|
<link rel="stylesheet" href="styles.css">
|
||||||
<style>:root { --color-primary: <?= htmlspecialchars($municipality['primary_color']) ?>; }</style>
|
<style>:root { --color-primary: <?= htmlspecialchars($municipality['primary_color']) ?>; }</style>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ $news_items = $stmt->fetchAll();
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Mitmachkarte <?= htmlspecialchars($municipality['name']) ?></title>
|
<title>Mitmachkarte <?= htmlspecialchars($municipality['name']) ?></title>
|
||||||
<link rel="icon" href="<?= htmlspecialchars($municipality['logo_path'] ?? 'assets/icon-municipality.png') ?>" type="image/png">
|
<link rel="icon" href="assets/user-group-solid-off-black.png" type="image/png">
|
||||||
<meta name="description" content="Bürgerbeteiligungsportal. Hinweise und Vorschläge auf der Karte eintragen.">
|
<meta name="description" content="Bürgerbeteiligungsportal. Hinweise und Vorschläge auf der Karte eintragen.">
|
||||||
|
|
||||||
|
|
||||||
@@ -89,7 +89,7 @@ $news_items = $stmt->fetchAll();
|
|||||||
<header id="app-header">
|
<header id="app-header">
|
||||||
<div class="header-left">
|
<div class="header-left">
|
||||||
<?php if (!empty($municipality['logo_path'])): ?>
|
<?php if (!empty($municipality['logo_path'])): ?>
|
||||||
<img src="<?= htmlspecialchars($municipality['logo_path']) ?>" alt="<?= htmlspecialchars($municipality['name']) ?>" class="header-logo" onerror="this.style.display='none'">
|
<img src="assets/user-group-solid-off-white.png" alt="user-group-solid-off-white" class="header-logo" onerror="this.style.display='none'">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<h1 class="header-title">Mitmachkarte <?= htmlspecialchars($municipality['name']) ?></h1>
|
<h1 class="header-title">Mitmachkarte <?= htmlspecialchars($municipality['name']) ?></h1>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ $municipality = $stmt->fetch();
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Datenschutz — <?= htmlspecialchars($municipality['name']) ?></title>
|
<title>Datenschutz — <?= htmlspecialchars($municipality['name']) ?></title>
|
||||||
<link rel="icon" href="<?= htmlspecialchars($municipality['logo_path'] ?? 'assets/icon-municipality.png') ?>" type="image/png">
|
<link rel="icon" href="assets/lock-solid-off-black.png" type="image/png">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
||||||
<link rel="stylesheet" href="styles.css">
|
<link rel="stylesheet" href="styles.css">
|
||||||
<style>:root { --color-primary: <?= htmlspecialchars($municipality['primary_color']) ?>; }</style>
|
<style>:root { --color-primary: <?= htmlspecialchars($municipality['primary_color']) ?>; }</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user