signal-desktop/stylesheets/components/GroupDescription.scss

33 lines
603 B
SCSS
Raw Normal View History

2021-06-01 17:24:28 -07:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 16:35:20 -08:00
@use '../mixins';
@use '../variables';
2021-06-01 17:24:28 -07:00
.GroupDescription {
&__text {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
overflow: hidden;
user-select: text;
2021-10-21 17:04:43 -04:00
a {
2024-11-15 16:35:20 -08:00
@include mixins.light-theme {
color: variables.$color-gray-90;
2021-10-21 17:04:43 -04:00
}
2024-11-15 16:35:20 -08:00
@include mixins.dark-theme {
color: variables.$color-gray-02;
2021-10-21 17:04:43 -04:00
}
}
2021-06-01 17:24:28 -07:00
}
&__read-more {
2024-11-15 16:35:20 -08:00
@include mixins.button-reset();
& {
display: inline-block;
font-weight: bold;
}
2021-06-01 17:24:28 -07:00
}
}