mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 03:35:55 +00:00
workaround for a race condition between dojo.parse() and tt-rss loading proper day/night css on startup because of firefox async CSS loader
This commit is contained in:
16
index.php
16
index.php
@@ -48,8 +48,6 @@
|
||||
$theme = get_pref("USER_CSS_THEME", false, false);
|
||||
if ($theme && theme_exists("$theme")) {
|
||||
echo stylesheet_tag(get_theme_path($theme), 'theme_css');
|
||||
} else {
|
||||
echo stylesheet_tag("css/default.css", 'theme_css');
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -116,11 +114,23 @@
|
||||
?>
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
background : #303030;
|
||||
}
|
||||
}
|
||||
|
||||
body.css_loading * {
|
||||
display : none;
|
||||
}
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta name="referrer" content="no-referrer"/>
|
||||
</head>
|
||||
|
||||
<body class="flat ttrss_main ttrss_index">
|
||||
<body class="flat ttrss_main ttrss_index css_loading">
|
||||
|
||||
<div id="overlay" style="display : block">
|
||||
<div id="overlay_inner">
|
||||
|
||||
Reference in New Issue
Block a user