Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

fix: @mentions & loading spinner theme #46

closed opened by shi.gg targeting main

@mentions is deff fixed, idk about spinner. don't merge yet, might edit

Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:irs2tcoeuvuwj3m4yampbuco/sh.tangled.repo.pull/3mcu636wqny22
+13 -4
Diff #0
+2 -1
src/components/Loader.tsx
··· 37 37 ]}> 38 38 <Icon 39 39 {...props} 40 - style={[a.absolute, a.inset_0, t.atoms.text_contrast_high, props.style]} 40 + style={[a.absolute, a.inset_0, props.style]} 41 + color={t.palette.contrast_500} 41 42 /> 42 43 </Animated.View> 43 44 )
+2 -2
src/style.css
··· 108 108 pointer-events: none; 109 109 } 110 110 .ProseMirror .mention { 111 - color: #ed5345; 111 + color: var(--mention-color, #ed5345); 112 112 } 113 113 .ProseMirror a, 114 114 .ProseMirror .autolink { 115 - color: #ed5345; 115 + color: var(--mention-color, #ed5345); 116 116 } 117 117 /* OLLIE: TODO -- this is not accessible */ 118 118 /* Remove focus state on inputs */
+9 -1
src/view/com/composer/text-input/TextInput.web.tsx
··· 393 393 394 394 return ( 395 395 <> 396 - <View style={[styles.container, hasRightPadding && styles.rightPadding]}> 396 + <View 397 + style={[ 398 + styles.container, 399 + hasRightPadding && styles.rightPadding, 400 + { 401 + // @ts-ignore 402 + '--mention-color': t.palette.primary_500, 403 + }, 404 + ]}> 397 405 {/* @ts-ignore inputStyle is fine */} 398 406 <EditorContent editor={editor} style={inputStyle} /> 399 407 </View>

History

2 rounds 0 comments
sign up or login to add to the discussion
expand 0 comments
closed without merging
shi.gg submitted #0
expand 0 comments