mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 02:18:25 +08:00
8962e8cdd3
* Improve contrast for timestamps and room list search trigger Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Change timeline separator colour to primary for improved contrast Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
24 lines
525 B
Plaintext
24 lines
525 B
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_TimelineSeparator {
|
|
clear: both;
|
|
margin: 4px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
font: var(--cpd-font-body-md-regular);
|
|
color: var(--cpd-color-text-primary);
|
|
}
|
|
|
|
.mx_TimelineSeparator > hr {
|
|
flex: 1 1 0;
|
|
height: 0;
|
|
border: none;
|
|
border-bottom: 1px solid var(--cpd-color-gray-400);
|
|
}
|