Merge pull request #2413 from phl0/whiteButtons

This commit is contained in:
Andreas Kristiansen 2023-08-16 09:37:25 +02:00 committed by GitHub
commit 9e21cd402b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2223,6 +2223,10 @@ $(document).ready(function(){
}
]
});
// change color of csv-button if dark mode is chosen
if (isDarkModeTheme()) {
$('[class*="buttons"]').css("color", "white");
}
</script>