Change of stroke slider/text color in dark theme to more visible
Posted: Wed Feb 23, 2022 10:19 am
Change color/width of stroke slider and actual time text to yellow in timeline in montagereview - in dark css it is not good visible when blue:
file:
/usr/share/zoneminder/www/skins/classic/views/js/montagereview.js
line 305 - var sliderLineWidth=1; -> change to:
var sliderLineWidth=2;
line 337 - ctx.strokeStyle = 'black'; -> change to:
ctx.strokeStyle = 'yellow';
line 348 - o.style.color = "blue"; -> change to:
o.style.color = "yellow";
hope this helps someone a little... without a creating whole new scheme...
file:
/usr/share/zoneminder/www/skins/classic/views/js/montagereview.js
line 305 - var sliderLineWidth=1; -> change to:
var sliderLineWidth=2;
line 337 - ctx.strokeStyle = 'black'; -> change to:
ctx.strokeStyle = 'yellow';
line 348 - o.style.color = "blue"; -> change to:
o.style.color = "yellow";
hope this helps someone a little... without a creating whole new scheme...