File tree 2 files changed +12
-7
lines changed
2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,10 @@ export const PortForwardButton: React.FC<PortForwardButtonProps> = (props) => {
58
58
sx = { {
59
59
fontSize : 12 ,
60
60
fontWeight : 500 ,
61
- height : 16 ,
62
- padding : ( theme ) => theme . spacing ( 0 , 1 ) ,
63
- borderRadius : 7 ,
61
+ height : 20 ,
62
+ minWidth : 20 ,
63
+ padding : ( theme ) => theme . spacing ( 0 , 0.5 ) ,
64
+ borderRadius : "50%" ,
64
65
display : "flex" ,
65
66
alignItems : "center" ,
66
67
justifyContent : "center" ,
@@ -82,11 +83,11 @@ export const PortForwardButton: React.FC<PortForwardButtonProps> = (props) => {
82
83
onClose = { onClose }
83
84
anchorOrigin = { {
84
85
vertical : "bottom" ,
85
- horizontal : "left " ,
86
+ horizontal : "right " ,
86
87
} }
87
88
transformOrigin = { {
88
89
vertical : "top" ,
89
- horizontal : "left " ,
90
+ horizontal : "right " ,
90
91
} }
91
92
>
92
93
< PortForwardPopoverView { ...props } ports = { listeningPorts ?. ports } />
@@ -210,7 +211,7 @@ export const PortForwardPopoverView: React.FC<
210
211
max = { 65535 }
211
212
required
212
213
sx = { {
213
- fontSize : 12 ,
214
+ fontSize : 14 ,
214
215
height : 34 ,
215
216
p : ( theme ) => theme . spacing ( 0 , 1.5 ) ,
216
217
background : "none" ,
@@ -248,7 +249,7 @@ const useStyles = makeStyles((theme) => ({
248
249
padding : 0 ,
249
250
width : theme . spacing ( 38 ) ,
250
251
color : theme . palette . text . secondary ,
251
- marginTop : theme . spacing ( 0.25 ) ,
252
+ marginTop : theme . spacing ( 0.5 ) ,
252
253
} ,
253
254
254
255
openUrlButton : {
Original file line number Diff line number Diff line change @@ -92,6 +92,10 @@ dark = createTheme(dark, {
92
92
input:-webkit-autofill:active {
93
93
-webkit-box-shadow: 0 0 0 100px ${ dark . palette . background . default } inset !important;
94
94
}
95
+
96
+ ::placeholder {
97
+ color: ${ dark . palette . text . disabled } ;
98
+ }
95
99
` ,
96
100
} ,
97
101
MuiAvatar : {
You can’t perform that action at this time.
0 commit comments