Skip to content

Commit 260005a

Browse files
committed
Fix theme colors no rendering in tests and bookmarklet
`theme--light` and `theme--dark` do not exist and this only worked in the extension by accident because `_setThemeColors()` method added the `light-theme` class to the body.
1 parent 4b5ac6d commit 260005a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
{{content-for "head-footer"}}
3333
</head>
34-
<body class="theme--light">
34+
<body class="theme-light">
3535
{{content-for "body"}}
3636

3737
<script src="{{rootURL}}assets/vendor.js"></script>

tests/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{{content-for "head-footer"}}
3232
{{content-for "test-head-footer"}}
3333
</head>
34-
<body class="theme--light">
34+
<body class="theme-light">
3535

3636
{{content-for "body"}}
3737
{{content-for "test-body"}}

0 commit comments

Comments
 (0)