Skip to content
Snippets Groups Projects
Commit 22eee81c authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

fix email fields in dark mode

parent c907b5a8
No related branches found
No related tags found
No related merge requests found
const CACHE_NAME = 'static-cache-v24'; const CACHE_NAME = 'static-cache-v25';
const FILES_TO_CACHE = [ const FILES_TO_CACHE = [
'/favicon.ico', '/favicon.ico',
'/offline.html', '/offline.html',
'/static/v24/css/light.min.css', '/static/v25/css/light.min.css',
'/static/v24/css/dark.min.css', '/static/v25/css/dark.min.css',
'/static/v24/css/material-icons.css', '/static/v25/css/material-icons.css',
'/static/v24/css/local.css', '/static/v25/css/local.css',
'/static/v24/fonts/MaterialIcons-Regular.woff2', '/static/v25/fonts/MaterialIcons-Regular.woff2',
'/static/v24/fonts/MaterialIcons-Regular.woff', '/static/v25/fonts/MaterialIcons-Regular.woff',
'/static/v24/fonts/MaterialIcons-Regular.ttf', '/static/v25/fonts/MaterialIcons-Regular.ttf',
'/static/v24/js/jquery-3.4.1.min.js', '/static/v25/js/jquery-3.4.1.min.js',
'/static/v24/js/materialize.min.js', '/static/v25/js/materialize.min.js',
'/static/v24/js/travelynx-actions.min.js', '/static/v25/js/travelynx-actions.min.js',
'/static/v24/js/autocomplete.min.js', '/static/v25/js/autocomplete.min.js',
'/static/v24/js/geolocation.min.js', '/static/v25/js/geolocation.min.js',
]; ];
self.addEventListener('install', (evt) => { self.addEventListener('install', (evt) => {
......
This diff is collapsed.
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
font-family: 'Material Icons'; font-family: 'Material Icons';
font-style: normal; font-style: normal;
font-weight: 400; 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'), src: local('Material Icons'),
local('MaterialIcons-Regular'), local('MaterialIcons-Regular'),
url(/static/v24/fonts/MaterialIcons-Regular.woff2) format('woff2'), url(/static/v25/fonts/MaterialIcons-Regular.woff2) format('woff2'),
url(/static/v24/fonts/MaterialIcons-Regular.woff) format('woff'), url(/static/v25/fonts/MaterialIcons-Regular.woff) format('woff'),
url(/static/v24/fonts/MaterialIcons-Regular.ttf) format('truetype'); url(/static/v25/fonts/MaterialIcons-Regular.ttf) format('truetype');
} }
.material-icons { .material-icons {
......
...@@ -3,27 +3,27 @@ ...@@ -3,27 +3,27 @@
"short_name": "Travelynx", "short_name": "Travelynx",
"scope": "/", "scope": "/",
"icons": [{ "icons": [{
"src": "/static/v24/icons/icon-128x128.png", "src": "/static/v25/icons/icon-128x128.png",
"sizes": "128x128", "sizes": "128x128",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v24/icons/icon-144x144.png", "src": "/static/v25/icons/icon-144x144.png",
"sizes": "144x144", "sizes": "144x144",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v24/icons/icon-152x152.png", "src": "/static/v25/icons/icon-152x152.png",
"sizes": "152x152", "sizes": "152x152",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v24/icons/icon-192x192.png", "src": "/static/v25/icons/icon-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v24/icons/icon-256x256.png", "src": "/static/v25/icons/icon-256x256.png",
"sizes": "256x256", "sizes": "256x256",
"type": "image/png" "type": "image/png"
}, { }, {
"src": "/static/v24/icons/icon-512x512.png", "src": "/static/v25/icons/icon-512x512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
}], }],
......
File moved
...@@ -14,6 +14,7 @@ html { ...@@ -14,6 +14,7 @@ html {
background-color: $bg-color; background-color: $bg-color;
} }
input[type=email],
input[type=text], input[type=text],
input[type=password] { input[type=password] {
color: $off-black; color: $off-black;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<meta name="description" content="Checkin-Service und Verspätungslog für Bahnfahrten"> <meta name="description" content="Checkin-Service und Verspätungslog für Bahnfahrten">
<meta name="theme-color" content="#673ab7"> <meta name="theme-color" content="#673ab7">
<meta name="apple-mobile-web-app-title" content="Travelynx"> <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-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-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96"> <link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-96x96.png" sizes="96x96">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment