Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Two UI tweaks after recent updates (#2647)

* Readd the top border to the highlighted post when a reply (revert #2628)

* Readd right pad to post controls

authored by

Paul Frazee and committed by
GitHub
b629fbdb 6149437c

+16 -27
+2 -13
src/view/com/post-thread/PostThreadItem.tsx
··· 250 250 251 251 <View 252 252 testID={`postThreadItem-by-${post.author.handle}`} 253 - style={[ 254 - styles.outer, 255 - styles.outerHighlighted, 256 - rootUri === post.uri && styles.outerHighlightedRoot, 257 - pal.border, 258 - pal.view, 259 - ]} 253 + style={[styles.outer, styles.outerHighlighted, pal.border, pal.view]} 260 254 accessible={false}> 261 255 <PostSandboxWarning /> 262 256 <View style={styles.layout}> ··· 732 726 paddingLeft: 8, 733 727 }, 734 728 outerHighlighted: { 735 - borderTopWidth: 0, 736 - paddingTop: 4, 729 + paddingTop: 16, 737 730 paddingLeft: 8, 738 731 paddingRight: 8, 739 - }, 740 - outerHighlightedRoot: { 741 - borderTopWidth: 1, 742 - paddingTop: 16, 743 732 }, 744 733 noTopBorder: { 745 734 borderTopWidth: 0,
+1 -1
src/view/com/util/LoadingPlaceholder.tsx
··· 88 88 strokeWidth={3} 89 89 /> 90 90 </View> 91 - <View style={{width: 30, height: 30}} /> 91 + <View style={styles.postCtrl} /> 92 92 </View> 93 93 </View> 94 94 </View>
+13 -13
src/view/com/util/post-ctrls/PostCtrls.tsx
··· 149 149 ) : undefined} 150 150 </TouchableOpacity> 151 151 </View> 152 - <View style={[styles.ctrl]}> 152 + <View style={styles.ctrl}> 153 153 <RepostButton 154 154 big={big} 155 155 isReposted={!!post.viewer?.repost} ··· 194 194 </TouchableOpacity> 195 195 </View> 196 196 {big ? undefined : ( 197 - <PostDropdownBtn 198 - testID="postDropdownBtn" 199 - postAuthor={post.author} 200 - postCid={post.cid} 201 - postUri={post.uri} 202 - record={record} 203 - richText={richText} 204 - showAppealLabelItem={showAppealLabelItem} 205 - style={styles.btnPad} 206 - /> 197 + <View style={styles.ctrl}> 198 + <PostDropdownBtn 199 + testID="postDropdownBtn" 200 + postAuthor={post.author} 201 + postCid={post.cid} 202 + postUri={post.uri} 203 + record={record} 204 + richText={richText} 205 + showAppealLabelItem={showAppealLabelItem} 206 + style={styles.btnPad} 207 + /> 208 + </View> 207 209 )} 208 - {/* used for adding pad to the right side */} 209 - <View /> 210 210 </View> 211 211 ) 212 212 }