File tree Expand file tree Collapse file tree
packages/fast-tooling-react/src/style Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,8 +62,10 @@ export function applyInteractiveFormControlIndicator(): CSSRules<{}> {
6262 borderRadius : "2px" ,
6363 "& svg" : {
6464 fill : foreground800 ,
65- minWidth : "14px" ,
66- padding : "1px 4px" ,
65+ "min-height" : "18px" ,
66+ "min-width" : "18px" ,
67+ "box-sizing" : "border-box" ,
68+ padding : "1px 0" ,
6769 } ,
6870 "&:hover" : {
6971 "& svg" : {
@@ -81,8 +83,9 @@ export function applyFormControlIndicator(): CSSRules<{}> {
8183 return {
8284 fill : foreground800 ,
8385 padding : "0 4px" ,
84- alignSelf : "center" ,
85- minWidth : "14px" ,
86+ "align-self" : "center" ,
87+ "min-width" : "14px" ,
88+ "min-height" : "14px" ,
8689 } ;
8790}
8891
@@ -380,14 +383,15 @@ export function applySoftRemoveInput(): CSSRules<{}> {
380383 width : "20px" ,
381384 margin : "0" ,
382385 height : "20px" ,
383- zIndex : "1" ,
384- borderRadius : "2px" ,
386+ "z-index" : "1" ,
387+ "border-radius" : "2px" ,
385388 ...applyFocusVisible ( {
386389 ...insetStrongBoxShadow ( accent ) ,
387390 outline : "none" ,
388391 } ) ,
389392 "& + svg" : {
390393 fill : foreground800 ,
394+ "padding-top" : "1px" ,
391395 } ,
392396 "&:disabled + svg" : {
393397 opacity : `${ disabledOpacity } ` ,
You can’t perform that action at this time.
0 commit comments