mirror of
https://github.com/vector-im/element-web.git
synced 2026-03-05 21:42:13 +01:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
23 lines
572 B
Plaintext
23 lines
572 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;
|
|
}
|
|
}
|