File tree Expand file tree Collapse file tree 5 files changed +15
-10
lines changed Expand file tree Collapse file tree 5 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -55,15 +55,16 @@ export const Expander: FC<PropsWithChildren<ExpanderProps>> = ({
55
55
const useStyles = makeStyles ( ( theme ) => ( {
56
56
expandLink : {
57
57
cursor : "pointer" ,
58
- color : theme . palette . text . secondary ,
58
+ color : theme . palette . text . primary ,
59
59
} ,
60
60
collapseLink : {
61
61
marginTop : theme . spacing ( 2 ) ,
62
+ color : theme . palette . text . primary ,
62
63
} ,
63
64
text : {
64
65
display : "flex" ,
65
66
alignItems : "center" ,
66
- color : theme . palette . text . secondary ,
67
+ color : theme . palette . text . primary ,
67
68
fontSize : theme . typography . caption . fontSize ,
68
69
} ,
69
70
} ) )
Original file line number Diff line number Diff line change @@ -36,7 +36,9 @@ export const LicenseBannerView: React.FC<LicenseBannerViewProps> = ({
36
36
< div className = { styles . leftContent } >
37
37
< span > { messages [ 0 ] } </ span >
38
38
39
- < Link href = "mailto:sales@coder.com" > { Language . upgrade } </ Link >
39
+ < Link color = "white" fontWeight = "medium" href = "mailto:sales@coder.com" >
40
+ { Language . upgrade }
41
+ </ Link >
40
42
</ div >
41
43
</ div >
42
44
)
@@ -52,7 +54,13 @@ export const LicenseBannerView: React.FC<LicenseBannerViewProps> = ({
52
54
< div >
53
55
{ Language . exceeded }
54
56
55
- < Link href = "mailto:sales@coder.com" > { Language . upgrade } </ Link >
57
+ < Link
58
+ color = "white"
59
+ fontWeight = "medium"
60
+ href = "mailto:sales@coder.com"
61
+ >
62
+ { Language . upgrade }
63
+ </ Link >
56
64
</ div >
57
65
< Expander expanded = { showDetails } setExpanded = { setShowDetails } >
58
66
< ul className = { styles . list } >
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ const ParameterField: React.FC<ParameterInputProps> = ({
71
71
return (
72
72
< TextField
73
73
id = { schema . name }
74
- size = "small"
75
74
defaultValue = { defaultValue ?? schema . default_source_value }
76
75
placeholder = { schema . default_source_value }
77
76
disabled = { disabled }
@@ -102,13 +101,13 @@ const ParameterField: React.FC<ParameterInputProps> = ({
102
101
< FormControlLabel
103
102
disabled = { disabled }
104
103
value = "true"
105
- control = { < Radio color = "primary" size = "small" disableRipple /> }
104
+ control = { < Radio color = "primary" disableRipple /> }
106
105
label = "True"
107
106
/>
108
107
< FormControlLabel
109
108
disabled = { disabled }
110
109
value = "false"
111
- control = { < Radio color = "primary" size = "small" disableRipple /> }
110
+ control = { < Radio color = "primary" disableRipple /> }
112
111
label = "False"
113
112
/>
114
113
</ RadioGroup >
@@ -121,7 +120,6 @@ const ParameterField: React.FC<ParameterInputProps> = ({
121
120
return (
122
121
< TextField
123
122
id = { schema . name }
124
- size = "small"
125
123
disabled = { disabled }
126
124
placeholder = { schema . default_source_value }
127
125
defaultValue = { defaultValue ?? schema . default_source_value }
Original file line number Diff line number Diff line change @@ -193,7 +193,6 @@ const RichParameterField: React.FC<RichParameterInputProps> = ({
193
193
< TextField
194
194
{ ...props }
195
195
type = { parameter . type }
196
- size = "small"
197
196
disabled = { disabled }
198
197
required = { parameter . required }
199
198
placeholder = { parameter . default_value }
Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ dark = createTheme(dark, {
126
126
height : BUTTON_MD_HEIGHT ,
127
127
padding : theme . spacing ( 1 , 2 ) ,
128
128
whiteSpace : "nowrap" ,
129
- minWidth : "auto" ,
130
129
} ) ,
131
130
sizeSmall : {
132
131
borderRadius : 6 ,
You can’t perform that action at this time.
0 commit comments