We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 393ba0e commit c92941fCopy full SHA for c92941f
src/components/SettingsTable.tsx
@@ -34,12 +34,10 @@ const SettingsTable =
34
overflow: "hidden",
35
textOverflow: "ellipsis",
36
whiteSpace: "nowrap",
37
- color: "white",
38
verticalAlign: "middle",
39
};
40
const featureStyle: React.CSSProperties = {
41
textAlign: "left",
42
43
44
45
const thBorder: React.CSSProperties = {
@@ -55,6 +53,14 @@ const SettingsTable =
55
53
56
54
return (
57
<>
+ <style>
+ {/* override blueprint styles while still allowing 3rd party theming */}
58
+ {`
59
+ .rm-extensions-settings table.bp3-html-table th {
60
+ color: white;
61
+ }
62
+ `}
63
+ </style>
64
<HTMLTable
65
bordered={false}
66
style={{ ...noBorder }}
0 commit comments