mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-12 12:04:16 +00:00
72 lines
1.2 KiB
Plaintext
72 lines
1.2 KiB
Plaintext
.post-replie-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 8px;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: rgba(var(--layoutBackgroundColor), 0.7);
|
|
|
|
border-radius: 12px;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
.user {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: 7px;
|
|
|
|
.lazy-load-image-background {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
span {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: 3px;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
overflow: hidden;
|
|
|
|
span {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: 3px;
|
|
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background-color: rgba(var(--layoutBackgroundColor), 0.9);
|
|
}
|
|
} |