mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 04:06:44 +02:00
* Layer Compound and shared component CSS * Layer app theme CSS * Remove !important flags from ActionBarView * Remove unnecessary !important statements from shared components * Avoid dead code errors for *.pcss just because layer is specified after @import url * Remove unnecessary !important styling * Override Banner defaults in RoomStatusBarView * Updated snaps * Updated snaps * Fix styling of media body in app/web * Fix styling for Compound anchors * Fix styling issues in app/web * More styling fixes * Fix a problem extracting css for HTMLExport * Revert changes * Fix for theme styling * Add test to improve coverage * Prettier * Fix styling issues * Add data-kind attribute to avoid global styling override * Update screenshot that now is correct * Revert data-kind attribute * Handle LinkPreview styling in .pcss * Fix flaky test: Avoid racing the lazy-loaded ManageEventIndexDialog * Take care of review comments * Updated snaps * Updated snaps again after merge * Remove !important from RoomStatusBar
31 lines
788 B
Plaintext
31 lines
788 B
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_TextualEvent {
|
|
overflow-y: hidden;
|
|
line-height: normal;
|
|
|
|
a {
|
|
color: $accent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomView_searchResultsPanel & {
|
|
opacity: unset; /* Unset the opacity value specified above on the search results panel */
|
|
}
|
|
}
|
|
|
|
.mx_TextualBody_urlPreviews {
|
|
/* Let shared-components own preview link colours instead of the app-wide anchor colour. */
|
|
a:where(:not([data-kind])):hover,
|
|
a:where(:not([data-kind])):link,
|
|
a:where(:not([data-kind])):visited {
|
|
color: revert-layer;
|
|
}
|
|
}
|