Bluesky app fork with some witchin' additions 💫

fix background colors (#9174)

authored by samuel.fm and committed by

GitHub fe31cf45 a9efd949

+7 -6
+3 -1
src/components/PostControls/ShareMenu/ShareMenuItems.tsx
··· 136 {hideInPWI && ( 137 <Menu.Group> 138 <Menu.ContainerItem> 139 - <Admonition type="warning" style={[a.flex_1, a.border_0, a.p_0]}> 140 <Trans>This post is only visible to logged-in users.</Trans> 141 </Admonition> 142 </Menu.ContainerItem>
··· 136 {hideInPWI && ( 137 <Menu.Group> 138 <Menu.ContainerItem> 139 + <Admonition 140 + type="warning" 141 + style={[a.flex_1, a.border_0, a.p_0, a.bg_transparent]}> 142 <Trans>This post is only visible to logged-in users.</Trans> 143 </Admonition> 144 </Menu.ContainerItem>
-1
src/screens/Settings/components/AddAppPasswordDialog.tsx
··· 195 value={data.password} 196 label={_(msg`Copy App Password`)} 197 size="large" 198 - variant="solid" 199 color="secondary"> 200 <ButtonText>{data.password}</ButtonText> 201 <ButtonIcon icon={CopyIcon} />
··· 195 value={data.password} 196 label={_(msg`Copy App Password`)} 197 size="large" 198 color="secondary"> 199 <ButtonText>{data.password}</ButtonText> 200 <ButtonIcon icon={CopyIcon} />
+2 -2
src/screens/Settings/components/ChangeHandleDialog.tsx
··· 428 </Text> 429 <View style={[a.py_xs]}> 430 <CopyButton 431 - variant="solid" 432 color="secondary" 433 value="_atproto" 434 label={_(msg`Copy host`)} 435 hoverStyle={[a.bg_transparent]} 436 hitSlop={HITSLOP_10}> 437 <Text style={[a.text_md, a.flex_1]}>_atproto</Text> ··· 449 </Text> 450 <View style={[a.py_xs]}> 451 <CopyButton 452 - variant="solid" 453 color="secondary" 454 value={'did=' + currentAccount?.did} 455 label={_(msg`Copy TXT record value`)} 456 hoverStyle={[a.bg_transparent]} 457 hitSlop={HITSLOP_10}> 458 <Text style={[a.text_md, a.flex_1]}>
··· 428 </Text> 429 <View style={[a.py_xs]}> 430 <CopyButton 431 color="secondary" 432 value="_atproto" 433 label={_(msg`Copy host`)} 434 + style={[a.bg_transparent]} 435 hoverStyle={[a.bg_transparent]} 436 hitSlop={HITSLOP_10}> 437 <Text style={[a.text_md, a.flex_1]}>_atproto</Text> ··· 449 </Text> 450 <View style={[a.py_xs]}> 451 <CopyButton 452 color="secondary" 453 value={'did=' + currentAccount?.did} 454 label={_(msg`Copy TXT record value`)} 455 + style={[a.bg_transparent]} 456 hoverStyle={[a.bg_transparent]} 457 hitSlop={HITSLOP_10}> 458 <Text style={[a.text_md, a.flex_1]}>
+2 -2
src/screens/Settings/components/CopyButton.tsx
··· 58 pointerEvents="none"> 59 <Text 60 style={[ 61 - a.font_semi_bold, 62 a.text_right, 63 - a.text_md, 64 t.atoms.text_contrast_high, 65 ]}> 66 <Trans>Copied!</Trans>
··· 58 pointerEvents="none"> 59 <Text 60 style={[ 61 + a.font_medium, 62 a.text_right, 63 + a.text_sm, 64 t.atoms.text_contrast_high, 65 ]}> 66 <Trans>Copied!</Trans>