mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 08:56:39 -06:00
Dark mode arrow
This commit is contained in:
parent
5cdecf7d04
commit
1ac18909b4
4
public/v1/js/ff/charts.js
vendored
4
public/v1/js/ff/charts.js
vendored
@ -410,13 +410,13 @@ function drawAChart(URL, container, chartType, options, colorData) {
|
||||
mode: 'vertical',
|
||||
scaleID: 'x-axis-0',
|
||||
value: drawVerticalLine,
|
||||
borderColor: 'red',
|
||||
borderColor: lineColor,
|
||||
borderWidth: 1,
|
||||
label: {
|
||||
backgroundColor: 'rgba(0,0,0,0)',
|
||||
fontFamily: "sans-serif",
|
||||
fontSize: 12,
|
||||
fontColor: "#333",
|
||||
fontColor: lineTextColor,
|
||||
position: "right",
|
||||
xAdjust: -20,
|
||||
yAdjust: -125,
|
||||
|
@ -169,6 +169,12 @@
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
||||
var lineColor = 'red';
|
||||
var lineTextColor = '#000';
|
||||
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||
var lineColor = '#a00';
|
||||
var lineTextColor = '#bec5cb';
|
||||
}
|
||||
var billCount = {{ billCount }};
|
||||
var accountFrontpageUrl = '{{ route('chart.account.frontpage') }}';
|
||||
var accountRevenueUrl = '{{ route('chart.account.revenue') }}';
|
||||
|
Loading…
Reference in New Issue
Block a user