Is it a bug at the dark theme? Or do i have a wrong config?
Current versions style (color and border style) in html source
<head>
<link rel='stylesheet' id='raindrops_color_type-css' href='http://example.com/wp/?raindrops_color_type=1&ver=49fd8a946335c91ffc8bd184177875eb' type='text/css' media='all' />
</head>
Old versions style (color and border style) in html source
<head>
<style type="text/css" id="raindrops-embed-css">
<!--/*<! [CDATA[*/
.gallery { margin: auto; overflow: hidden; width: 100%; }
.....many styles
</style>
</head>
Your WEB Site ( only home ) link element href URL is redirect to login.php
then lost style( color and border )
it maybe server config issue.
<?php
$raindrops_new_style_load = false;
?>
This command is change old style ( styele embed header )
I recommend
Check, The reason for redirection occurs
and another note
The name of the child theme to something other than raindrops
for example, ducaticlubwien
Future, if you have written a custom style to child theme, there is likely to be a problem.
@import url("../raindrops/style.css"); is no need
Raindrops is automatic include parent style.css
Thank you.