Skip to content

Commit fee9592

Browse files
committed
Don't reference var(--name) in CSS variable declarations
Seems like this doesn't work? The colours just happened to work by accident before it seems (and still works in Firefox, but not in Chrome). Fixes #790
1 parent dc6ac06 commit fee9592

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

public/dark.css

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
22
--text: #fff;
3-
--bg: rgba(0,0,0,0);
3+
--bg: #000;
44
--header-border: #888; /* Border below some headers */
55
--backdrop: #0e1011;
66
--target-bg: #b78c1d; /* :target; mostly for headers in the documentation. */
@@ -9,15 +9,15 @@
99
--link: #8edff8; /* <a> */
1010
--link-hover: #7acee9;
1111

12-
--input-text: var(--text); /* <input>, <select> */
13-
--input-bg: var(--bg);
12+
--input-text: #fff; /* <input>, <select> */
13+
--input-bg: #000;
1414
--input-border: #444;
15-
--input-focus: var(--link); /* Outline for focused inputs etc. */
15+
--input-focus: #8edff8; /* Outline for focused inputs etc. */
1616
--fieldset-border: #666; /* Border around setting boxes on the settings page */
1717
--form-error-text: #ff8f8f;
1818
--input-error-border: red;
1919

20-
--btn-text: var(--text); /* <button> */
20+
--btn-text: #fff; /* <button> */
2121
--btn-bg: linear-gradient(#7e7d7d, #404040);
2222
--btn-border: #b0b0b0; /* Default border style */
2323
--btn-border-outset: #b8b8b8; /* Top and left styles for "3D" effect */

public/vars.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
:root {
22
--text: #252525;
33
--bg: #fff;
4-
--header-border: var(--text); /* Border below some headers */
4+
--header-border: #252525; /* Border below some headers */
55
--backdrop: #eee;
66
--target-bg: #ff6; /* :target; for highlighting search results and headers in the documentation. */
77
--loading-text: #777; /* Little … that appears if something takes more than ~300ms to load */
88

99
--link: #00f; /* <a> */
1010
--link-hover: #6491ff;
1111

12-
--input-text: var(--text); /* <input>, <select> */
13-
--input-bg: var(--bg);
12+
--input-text: #252525; /* <input>, <select> */
13+
--input-bg: #fff;
1414
--input-border: #bbb;
1515
--input-focus: #00f; /* Outline for focused inputs etc. */
1616
--fieldset-border: #666; /* Border around setting boxes on the settings page */
1717
--form-error-text: red;
1818
--input-error-border: red;
1919

20-
--btn-text: var(--text); /* <button> */
20+
--btn-text: #252525; /* <button> */
2121
--btn-bg: linear-gradient(#f6f5f4, #edebe9);
2222
--btn-border: #e9e9e9; /* Default border style */
2323
--btn-border-outset: #ccc; /* Top and left styles for "3D" effect */

0 commit comments

Comments
 (0)