forked from AkkomaGang/akkoma-fe
公開範囲による背景色の変更
This commit is contained in:
parent
1f81df7cb0
commit
a442ef67ac
2 changed files with 14 additions and 1 deletions
|
@ -55,6 +55,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
.status-container.private {
|
||||
background-color: #f0d7e6c0;
|
||||
}
|
||||
.status-container.unlisted {
|
||||
background-color: #d3f2d7c0;
|
||||
}
|
||||
.status-container.local {
|
||||
background-color: #d6e4f2c0;
|
||||
}
|
||||
.status-container.direct {
|
||||
background-color: #f2f2d6c0;
|
||||
}
|
||||
|
||||
.pin {
|
||||
padding: var(--status-margin, $status-margin) var(--status-margin, $status-margin) 0;
|
||||
display: flex;
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
|
||||
<div
|
||||
v-if="!deleted"
|
||||
:class="[userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }]"
|
||||
:class="[userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }, status.visibility ]"
|
||||
:style="[ userStyle ]"
|
||||
class="status-container"
|
||||
:data-tags="tags"
|
||||
|
|
Loading…
Reference in a new issue