Revert all the user highlight stuff for now
This commit is contained in:
parent
a9c2d37315
commit
ab90dc9fb1
|
@ -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"
|
||||||
>
|
>
|
||||||
|
|
|
@ -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') {
|
||||||
|
|
Loading…
Reference in a new issue