[basicui] Remove Roboto font as unused by the app (#1712)

Fix #1273

Signed-off-by: Laurent Garnier <lg.hc@free.fr>
pull/1719/head
lolodomo 2023-02-16 22:17:12 +01:00 committed by GitHub
parent f1e4e91c1b
commit b2bd16b43f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 32 deletions

View File

@ -16,8 +16,6 @@
var paths = {
FontLibs: [
'./node_modules/roboto-fontface/fonts/Roboto-Medium.*',
'./node_modules/roboto-fontface/fonts/Roboto-Regular.*',
'./node_modules/material-design-icons/iconfont/MaterialIcons-Regular.*'
]
};

View File

@ -25,7 +25,6 @@
<link rel="stylesheet" type="text/css" href="mdl/material.min.css" />
<link rel="stylesheet" type="text/css" href="material-icons.css" />
<link rel="stylesheet" type="text/css" href="roboto.css" />
<link rel="stylesheet" type="text/css" href="smarthome.css" />
<script type="application/json" id="config">{"webAudio":%config.web-audio%}</script>

View File

@ -20,7 +20,6 @@
<link rel="stylesheet" type="text/css" href="mdl/material.min.css" />
<link rel="stylesheet" type="text/css" href="material-icons.css" />
<link rel="stylesheet" type="text/css" href="roboto.css" />
<link rel="stylesheet" type="text/css" href="smarthome.css" />
<script src="mdl/material.min.js"></script>

View File

@ -1,28 +0,0 @@
/* Roboto Regular */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('fonts/Roboto-Regular.eot'); /* IE9 Compat Modes */
src: local('Roboto'), local('Roboto-Regular'),
url('fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/Roboto-Regular.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/Roboto-Regular.woff') format('woff'), /* Modern Browsers */
url('fonts/Roboto-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/Roboto-Regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* Roboto Medium */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url('fonts/Roboto-Medium.eot'); /* IE9 Compat Modes */
src: local('Roboto Medium'), local('Roboto-Medium'),
url('fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/Roboto-Medium.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/Roboto-Medium.woff') format('woff'), /* Modern Browsers */
url('fonts/Roboto-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/Roboto-Medium.svg#Roboto') format('svg'); /* Legacy iOS */
}