add logging for cache busting colors

This commit is contained in:
2025-05-27 14:40:22 +02:00
parent 1a9d848459
commit 43e1ea37d5
3 changed files with 13 additions and 2 deletions

View File

@@ -11,7 +11,9 @@
<link href="{{ url_for('static', filename='css/file-grid.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/base.css') }}" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/colors.css') }}">
<link rel="stylesheet" href="{{ url_for('main.dynamic_colors') }}?v={{ site_settings.updated_at.timestamp() }}" onload="console.log('[CSS] Dynamic colors loaded with version:', '{{ site_settings.updated_at.timestamp() }}')">
<link rel="stylesheet" href="{{ url_for('main.dynamic_colors') }}?v={{ site_settings.updated_at.timestamp() }}"
onload="console.log('[CSS] Dynamic colors loaded with version:', '{{ site_settings.updated_at.timestamp() }}', 'Primary:', getComputedStyle(document.documentElement).getPropertyValue('--primary-color').trim(), 'Secondary:', getComputedStyle(document.documentElement).getPropertyValue('--secondary-color').trim())"
onerror="console.error('[CSS] Failed to load dynamic colors')">
{% block extra_css %}{% endblock %}
<script>
console.log('[CSS] Base colors loaded');
@@ -19,6 +21,8 @@
console.log('[CSS] All CSS files loaded');
console.log('[CSS] Primary color:', getComputedStyle(document.documentElement).getPropertyValue('--primary-color').trim());
console.log('[CSS] Secondary color:', getComputedStyle(document.documentElement).getPropertyValue('--secondary-color').trim());
console.log('[CSS] Chart color 1:', getComputedStyle(document.documentElement).getPropertyValue('--chart-color-1').trim());
console.log('[CSS] Chart color 2:', getComputedStyle(document.documentElement).getPropertyValue('--chart-color-2').trim());
});
</script>
</head>