@dartech/arsenal-ui 1.4.80 → 1.4.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +12 -0
- package/package.json +1 -1
- package/src/theme/inputThemeOptions.d.ts +12 -0
package/index.js
CHANGED
@@ -1612,9 +1612,21 @@ const inputThemeOptions = {
|
|
1612
1612
|
borderColor: '#DDDDE1'
|
1613
1613
|
},
|
1614
1614
|
'&.MuiButton-textPrimary': {
|
1615
|
+
color: baseTheme.palette.secondary.dark,
|
1616
|
+
'&:hover': {
|
1617
|
+
backgroundColor: '#F6F6F7'
|
1618
|
+
},
|
1619
|
+
'&:active': {
|
1620
|
+
backgroundColor: '#EEEEF0'
|
1621
|
+
}
|
1622
|
+
},
|
1623
|
+
'&.MuiButton-textSecondary': {
|
1615
1624
|
color: baseTheme.palette.secondary.main,
|
1616
1625
|
'&:hover': {
|
1617
1626
|
backgroundColor: '#DEF7FC'
|
1627
|
+
},
|
1628
|
+
'&:active': {
|
1629
|
+
backgroundColor: '#CFE6ED'
|
1618
1630
|
}
|
1619
1631
|
}
|
1620
1632
|
}
|
package/package.json
CHANGED
@@ -25,6 +25,18 @@ declare const inputThemeOptions: {
|
|
25
25
|
'&:hover': {
|
26
26
|
backgroundColor: string;
|
27
27
|
};
|
28
|
+
'&:active': {
|
29
|
+
backgroundColor: string;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
'&.MuiButton-textSecondary': {
|
33
|
+
color: string;
|
34
|
+
'&:hover': {
|
35
|
+
backgroundColor: string;
|
36
|
+
};
|
37
|
+
'&:active': {
|
38
|
+
backgroundColor: string;
|
39
|
+
};
|
28
40
|
};
|
29
41
|
};
|
30
42
|
};
|