mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
826 B
47 lines
826 B
// Copyright (c) 2018 Tildes contributors <code@tildes.net>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
.message {
|
|
margin-bottom: 0.4rem;
|
|
border: 1px solid;
|
|
border-color: inherit;
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.2rem;
|
|
font-size: 0.7rem;
|
|
line-height: 0.9rem;
|
|
|
|
color: var(--foreground-highlight-color);
|
|
background-color: var(--background-secondary-color);
|
|
|
|
.link-user {
|
|
margin-right: 0.2rem;
|
|
}
|
|
|
|
time {
|
|
margin-left: 0.4rem;
|
|
font-size: 0.6rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.message-text {
|
|
@extend %text-container;
|
|
|
|
margin-left: 0.2rem;
|
|
overflow: auto;
|
|
padding: 0.2rem;
|
|
}
|
|
|
|
.message-list-unread {
|
|
.message-list-subject {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.is-message-mine {
|
|
margin-left: -2px;
|
|
border-left: 3px solid var(--stripe-mine-color);
|
|
}
|