mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08: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:
@@ -654,4 +654,4 @@ input[type="password"]::-webkit-caps-lock-indicator {
|
||||
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
|
||||
background-color: rgb(189,192,198);
|
||||
color: #444;
|
||||
}
|
||||
}
|
||||
|
||||
BIN
front/css/font/SourceSans3-Black.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-Black.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-BlackIt.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-BlackIt.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-Bold.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-Bold.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-BoldIt.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-BoldIt.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-ExtraLight.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-ExtraLight.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-ExtraLightIt.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-ExtraLightIt.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-It.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-It.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-Light.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-Light.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-LightIt.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-LightIt.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-Regular.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-Regular.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-Semibold.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-Semibold.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3-SemiboldIt.otf.woff2
Normal file
BIN
front/css/font/SourceSans3-SemiboldIt.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3VF-Italic.otf.woff2
Normal file
BIN
front/css/font/SourceSans3VF-Italic.otf.woff2
Normal file
Binary file not shown.
BIN
front/css/font/SourceSans3VF-Roman.otf.woff2
Normal file
BIN
front/css/font/SourceSans3VF-Roman.otf.woff2
Normal file
Binary file not shown.
4
front/css/offline-font.css
Normal file
4
front/css/offline-font.css
Normal file
@@ -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",
|
||||
"short_name": "Pi-Alert",
|
||||
"display": "standalone",
|
||||
"theme_color": "#282b30",
|
||||
"background_color": "#282b30"
|
||||
"theme_color": "#367fa9",
|
||||
"background_color": "#367fa9"
|
||||
}
|
||||
|
||||
@@ -263,7 +263,7 @@ function initializeDatatable () {
|
||||
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 -->
|
||||
<!-- <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 -->
|
||||
<link rel="icon" type="image/png" sizes="160x160" href="img/pialertLogoGray80.png" />
|
||||
@@ -125,7 +126,9 @@ if ($ENABLED_DARKMODE === True) {
|
||||
</li>
|
||||
|
||||
<!-- Menu Body -->
|
||||
<li class="user-body">
|
||||
|
||||
|
||||
<!-- <li class="user-body">
|
||||
<div class="row">
|
||||
<div class="col-xs-4 text-center">
|
||||
<a target="_blank" href="https://github.com/pucherot/Pi.Alert">GitHub Pi.Alert</a>
|
||||
@@ -135,15 +138,23 @@ if ($ENABLED_DARKMODE === True) {
|
||||
</div>
|
||||
<div class="col-xs-4 text-center">
|
||||
<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">
|
||||
<a href="#">Updates</a>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
|
||||
|
||||
<!-- </div> -->
|
||||
|
||||
|
||||
<!-- /.row -->
|
||||
</li>
|
||||
|
||||
<!-- </li> -->
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user