mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 01:35:49 +03:00
Prevent the banner text from being selected, replacing the spacing values with the variable (#8756)
This commit is contained in:
parent
323e911fe7
commit
dc1f53b6e9
1 changed files with 4 additions and 4 deletions
|
@ -19,12 +19,12 @@ $timeline-image-border-radius: 8px;
|
|||
|
||||
.mx_MImageBody_banner {
|
||||
position: absolute;
|
||||
bottom: 4px;
|
||||
left: 4px;
|
||||
padding: 4px;
|
||||
bottom: $spacing-4;
|
||||
left: $spacing-4;
|
||||
padding: $spacing-4;
|
||||
border-radius: $timeline-image-border-radius;
|
||||
font-size: $font-15px;
|
||||
|
||||
user-select: none; // prevent banner text from being selected
|
||||
pointer-events: none; // let the cursor go through to the media underneath
|
||||
|
||||
// Trying to match the width of the image is surprisingly difficult, so arbitrarily break it off early.
|
||||
|
|
Loading…
Reference in a new issue