Revert all the user highlight stuff for now

This commit is contained in:
Henry Jameson 2024-08-15 21:53:12 +03:00
parent a9c2d37315
commit ab90dc9fb1
2 changed files with 4 additions and 7 deletions

View file

@ -3,8 +3,7 @@
v-if="!hideStatus" v-if="!hideStatus"
ref="root" ref="root"
class="Status" class="Status"
:class="[{ '-focused': isFocused }, { '-conversation': inlineExpanded }, userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }]" :class="[{ '-focused': isFocused }, { '-conversation': inlineExpanded }]"
:style="[ userStyle ]"
> >
<div <div
v-if="error" v-if="error"
@ -121,6 +120,8 @@
<div <div
v-if="!deleted" v-if="!deleted"
:class="[userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }]"
:style="[ userStyle ]"
class="status-container" class="status-container"
:data-tags="tags" :data-tags="tags"
> >

View file

@ -27,11 +27,7 @@ const highlightStyle = (prefs) => {
} }
} else if (type === 'solid') { } else if (type === 'solid') {
return { return {
backgroundImage: [ backgroundColor: tintColor2,
'repeating-linear-gradient(90deg,',
`${tintColor} ,`,
`${tintColor} 20px`
].join(' '),
...customProps ...customProps
} }
} else if (type === 'side') { } else if (type === 'side') {