feat: further reduce darkmode init flash (#5701)
* feat: further reduce darkmode init flash * fix lint * tweak doc * colocate code
This commit is contained in:
parent
7eaf47c9d4
commit
9cccac1458
@ -52,6 +52,25 @@
|
|||||||
content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
|
content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<!------------------------------------------------------------------------->
|
||||||
|
<!-- to minimize white flash on load when user has dark mode enabled -->
|
||||||
|
<script>
|
||||||
|
try {
|
||||||
|
//
|
||||||
|
const theme = window.localStorage.getItem("excalidraw-theme");
|
||||||
|
if (theme === "dark") {
|
||||||
|
document.documentElement.classList.add("dark");
|
||||||
|
}
|
||||||
|
} catch {}
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
html.dark {
|
||||||
|
background-color: #121212;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<!------------------------------------------------------------------------->
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Redirect Excalidraw+ users which have auto-redirect enabled.
|
// Redirect Excalidraw+ users which have auto-redirect enabled.
|
||||||
//
|
//
|
||||||
@ -98,7 +117,7 @@
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<link rel="stylesheet" href="fonts.css" type="text/css" />
|
<link rel="stylesheet" href="fonts.css" type="text/css" />
|
||||||
<% if (process.env.REACT_APP_DEV_DISABLE_LIVE_RELOAD === "true") { %>
|
<% if (process.env.REACT_APP_DEV_DISABLE_LIVE_RELOAD==="true" ) { %>
|
||||||
<script>
|
<script>
|
||||||
{
|
{
|
||||||
const _WebSocket = window.WebSocket;
|
const _WebSocket = window.WebSocket;
|
||||||
@ -155,7 +174,7 @@
|
|||||||
width: 1px;
|
width: 1px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
white-space: nowrap; /* added line */
|
white-space: nowrap;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,6 +34,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.LoadingMessage--dark {
|
.LoadingMessage--dark {
|
||||||
background-color: $oc-black;
|
background-color: #121212;
|
||||||
color: $oc-white;
|
color: #ced4da;
|
||||||
}
|
}
|
||||||
|
@ -524,6 +524,9 @@ const ExcalidrawWrapper = () => {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
localStorage.setItem(STORAGE_KEYS.LOCAL_STORAGE_THEME, theme);
|
localStorage.setItem(STORAGE_KEYS.LOCAL_STORAGE_THEME, theme);
|
||||||
|
// currently only used for body styling during init (see public/index.html),
|
||||||
|
// but may change in the future
|
||||||
|
document.documentElement.classList.toggle("dark", theme === THEME.DARK);
|
||||||
}, [theme]);
|
}, [theme]);
|
||||||
|
|
||||||
const onChange = (
|
const onChange = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user