summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/design/default.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/design/default.ts')
-rw-r--r--sdnr/wt/odlux/framework/src/design/default.ts21
1 files changed, 20 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/framework/src/design/default.ts b/sdnr/wt/odlux/framework/src/design/default.ts
index 62e28e5c3..542c436f6 100644
--- a/sdnr/wt/odlux/framework/src/design/default.ts
+++ b/sdnr/wt/odlux/framework/src/design/default.ts
@@ -55,7 +55,26 @@ const theme = createMuiTheme({
dark: "#07819B",
contrastText: "#ffffff"
},
- }
+ },
+ overrides: { //temp fix for labels turning white after material new version (palette primary color)
+ MuiFormLabel: {
+ root: {
+ "&$focused": {
+ color: "rgba(143,143,143,1)"
+ }
+ },
+
+ focused: {}
+ },
+ MuiInput: {
+ underline: {
+
+ "&:after": {
+ borderBottom: "2px solid #444444"
+ }
+ }
+ }
+ },
});
export default theme; \ No newline at end of file