fix email fields in dark mode
This commit is contained in:
parent
c907b5a8e6
commit
22eee81c1c
7 changed files with 26 additions and 25 deletions
|
@ -1,19 +1,19 @@
|
|||
const CACHE_NAME = 'static-cache-v24';
|
||||
const CACHE_NAME = 'static-cache-v25';
|
||||
const FILES_TO_CACHE = [
|
||||
'/favicon.ico',
|
||||
'/offline.html',
|
||||
'/static/v24/css/light.min.css',
|
||||
'/static/v24/css/dark.min.css',
|
||||
'/static/v24/css/material-icons.css',
|
||||
'/static/v24/css/local.css',
|
||||
'/static/v24/fonts/MaterialIcons-Regular.woff2',
|
||||
'/static/v24/fonts/MaterialIcons-Regular.woff',
|
||||
'/static/v24/fonts/MaterialIcons-Regular.ttf',
|
||||
'/static/v24/js/jquery-3.4.1.min.js',
|
||||
'/static/v24/js/materialize.min.js',
|
||||
'/static/v24/js/travelynx-actions.min.js',
|
||||
'/static/v24/js/autocomplete.min.js',
|
||||
'/static/v24/js/geolocation.min.js',
|
||||
'/static/v25/css/light.min.css',
|
||||
'/static/v25/css/dark.min.css',
|
||||
'/static/v25/css/material-icons.css',
|
||||
'/static/v25/css/local.css',
|
||||
'/static/v25/fonts/MaterialIcons-Regular.woff2',
|
||||
'/static/v25/fonts/MaterialIcons-Regular.woff',
|
||||
'/static/v25/fonts/MaterialIcons-Regular.ttf',
|
||||
'/static/v25/js/jquery-3.4.1.min.js',
|
||||
'/static/v25/js/materialize.min.js',
|
||||
'/static/v25/js/travelynx-actions.min.js',
|
||||
'/static/v25/js/autocomplete.min.js',
|
||||
'/static/v25/js/geolocation.min.js',
|
||||
];
|
||||
|
||||
self.addEventListener('install', (evt) => {
|
||||
|
|
2
public/static/css/dark.min.css
vendored
2
public/static/css/dark.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2,12 +2,12 @@
|
|||
font-family: 'Material Icons';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(/static/v24/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: url(/static/v25/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
|
||||
src: local('Material Icons'),
|
||||
local('MaterialIcons-Regular'),
|
||||
url(/static/v24/fonts/MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(/static/v24/fonts/MaterialIcons-Regular.woff) format('woff'),
|
||||
url(/static/v24/fonts/MaterialIcons-Regular.ttf) format('truetype');
|
||||
url(/static/v25/fonts/MaterialIcons-Regular.woff2) format('woff2'),
|
||||
url(/static/v25/fonts/MaterialIcons-Regular.woff) format('woff'),
|
||||
url(/static/v25/fonts/MaterialIcons-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
|
|
|
@ -3,27 +3,27 @@
|
|||
"short_name": "Travelynx",
|
||||
"scope": "/",
|
||||
"icons": [{
|
||||
"src": "/static/v24/icons/icon-128x128.png",
|
||||
"src": "/static/v25/icons/icon-128x128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v24/icons/icon-144x144.png",
|
||||
"src": "/static/v25/icons/icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v24/icons/icon-152x152.png",
|
||||
"src": "/static/v25/icons/icon-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v24/icons/icon-192x192.png",
|
||||
"src": "/static/v25/icons/icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v24/icons/icon-256x256.png",
|
||||
"src": "/static/v25/icons/icon-256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}, {
|
||||
"src": "/static/v24/icons/icon-512x512.png",
|
||||
"src": "/static/v25/icons/icon-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}],
|
||||
|
|
|
@ -14,6 +14,7 @@ html {
|
|||
background-color: $bg-color;
|
||||
}
|
||||
|
||||
input[type=email],
|
||||
input[type=text],
|
||||
input[type=password] {
|
||||
color: $off-black;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<meta name="description" content="Checkin-Service und Verspätungslog für Bahnfahrten">
|
||||
<meta name="theme-color" content="#673ab7">
|
||||
<meta name="apple-mobile-web-app-title" content="Travelynx">
|
||||
% my $av = 'v24'; # asset version
|
||||
% my $av = 'v25'; # asset version
|
||||
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-16x16.png" sizes="16x16">
|
||||
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96">
|
||||
|
|
Loading…
Reference in a new issue