mirror of
https://github.com/vector-im/element-web.git
synced 2026-04-04 21:21:04 +02:00
* Port over linkifyJS to shared-components. * Drop rubbish * update lock * quickfix test * drop group id * Modernize tests * Remove stories that aren't in use. * Complete working version * Add copyright * tidy up * update lock * Update snaps * update snap * undo change * remove unused * More test updates * fix typo * fix margin on preview * move margin block * snapupdate * prettier * cleanup a test mistake * Fixup sonar issues * Don't expose linkifyjs to applications, just provide helper functions. * Add story for documentation. * remove $ * Use a const * typo * cleanup var name * remove console line * Changes checkpoint * Convert to context * Revert unrelated change. * more cleanup * Add a test to cover ignoring incoming data elements * Make tests happy * Update tests for LinkedText * Underlines! * fix lock * remove unused linkify packages * import move * Remove mod to remove underline * undo * fix snap * another snapshot fix * Tidy up based on review. * fix story * Pass in args
23 lines
570 B
Plaintext
23 lines
570 B
Plaintext
/* sidebar blurred avatar background */
|
|
|
|
/* if backdrop-filter is supported, */
|
|
/* set the user avatar (if any) as a background so */
|
|
/* it can be blurred by the tag panel and room list */
|
|
|
|
.mx_RoomSublist_showNButton {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/*
|
|
data-kind is used by the Compound <Link> component and therefore does not override them.
|
|
This is horrible, but will get less horrible when links in the app are replaced with
|
|
<Link>.
|
|
*/
|
|
a:not([data-kind]) {
|
|
&:hover,
|
|
&:link,
|
|
&:visited {
|
|
text-decoration: none;
|
|
}
|
|
}
|