mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2026-04-15 22:51:37 -07:00
Bugfixing
Replace the Googlefonts with a local verion of SourceSans3 from "https://github.com/adobe-fonts/source-sans/releases". Fixing the ThemeColor in the manifest.json file.
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
src: url('font/SourceSans3-Regular.otf.woff2') format('woff2');
|
||||||
|
}
|
||||||
@@ -2,6 +2,6 @@
|
|||||||
"name": "Pi-Alert Console",
|
"name": "Pi-Alert Console",
|
||||||
"short_name": "Pi-Alert",
|
"short_name": "Pi-Alert",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"theme_color": "#282b30",
|
"theme_color": "#367fa9",
|
||||||
"background_color": "#282b30"
|
"background_color": "#367fa9"
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -263,7 +263,7 @@ function initializeDatatable () {
|
|||||||
default: color='aqua'; break;
|
default: color='aqua'; break;
|
||||||
};
|
};
|
||||||
|
|
||||||
$(td).html ('<a href="deviceDetails.php?mac='+ rowData[10] +'" class="badge bg-'+ color +'">'+ cellData +'</a>');
|
$(td).html ('<a href="deviceDetails.php?mac='+ rowData[10] +'" class="badge bg-'+ color +'">'+ cellData.replace('-', '') +'</a>');
|
||||||
} },
|
} },
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ if (file_exists("darkmode")) {
|
|||||||
|
|
||||||
<!-- Google Font -->
|
<!-- Google Font -->
|
||||||
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic"> -->
|
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic"> -->
|
||||||
|
<link rel="stylesheet" href="css/offline-font.css">
|
||||||
|
|
||||||
<!-- Page Icon -->
|
<!-- Page Icon -->
|
||||||
<link rel="icon" type="image/png" sizes="160x160" href="img/pialertLogoGray80.png" />
|
<link rel="icon" type="image/png" sizes="160x160" href="img/pialertLogoGray80.png" />
|
||||||
@@ -125,7 +126,9 @@ if ($ENABLED_DARKMODE === True) {
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<!-- Menu Body -->
|
<!-- Menu Body -->
|
||||||
<li class="user-body">
|
|
||||||
|
|
||||||
|
<!-- <li class="user-body">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-4 text-center">
|
<div class="col-xs-4 text-center">
|
||||||
<a target="_blank" href="https://github.com/pucherot/Pi.Alert">GitHub Pi.Alert</a>
|
<a target="_blank" href="https://github.com/pucherot/Pi.Alert">GitHub Pi.Alert</a>
|
||||||
@@ -135,15 +138,23 @@ if ($ENABLED_DARKMODE === True) {
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-xs-4 text-center">
|
<div class="col-xs-4 text-center">
|
||||||
<a target="_blank" href="https://github.com/pucherot/Pi.Alert/blob/main/LICENSE.txt">GNU GPLv3</a>
|
<a target="_blank" href="https://github.com/pucherot/Pi.Alert/blob/main/LICENSE.txt">GNU GPLv3</a>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
<div class="col-xs-4 text-center">
|
<div class="col-xs-4 text-center">
|
||||||
<a href="#">Updates</a>
|
<a href="#">Updates</a>
|
||||||
</div>
|
</div>
|
||||||
-->
|
-->
|
||||||
</div>
|
|
||||||
|
|
||||||
|
<!-- </div> -->
|
||||||
|
|
||||||
|
|
||||||
<!-- /.row -->
|
<!-- /.row -->
|
||||||
</li>
|
|
||||||
|
<!-- </li> -->
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user