Skip to content

Commit

Permalink
Fix: remove embeds hover color (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxicAven authored Nov 13, 2024
1 parent a992b8c commit 7e4a986
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions src/components/_details.scss
Original file line number Diff line number Diff line change
Expand Up @@ -249,22 +249,32 @@ div[class^="tags"] div[class^="pinIcon"] path {

// speaking indicator
div[class*="avatarSpeaking_"] {
-webkit-box-shadow: inset 0 0 0 2px $green,
-webkit-box-shadow:
inset 0 0 0 2px $green,
inset 0 0 0 3px var(--background-secondary);
box-shadow: inset 0 0 0 2px $green,
box-shadow:
inset 0 0 0 2px $green,
inset 0 0 0 3px var(--background-secondary);
}

div[class*="videoLayer_"] > div[class^="tileChild"] > div[class^="border"] {
&[class*="speaking_"] {
-webkit-box-shadow: inset 0 0 0 2px $green, inset 0 0 0 3px $green;
box-shadow: inset 0 0 0 2px $green, inset 0 0 0 3px $green;
-webkit-box-shadow:
inset 0 0 0 2px $green,
inset 0 0 0 3px $green;
box-shadow:
inset 0 0 0 2px $green,
inset 0 0 0 3px $green;
}

// this is when emojis fly across the tile
&[class*="voiceChannelEffect_"] {
-webkit-box-shadow: inset 0 0 0 2px $brand, inset 0 0 0 3px $brand;
box-shadow: inset 0 0 0 2px $brand, inset 0 0 0 3px $brand;
-webkit-box-shadow:
inset 0 0 0 2px $brand,
inset 0 0 0 3px $brand;
box-shadow:
inset 0 0 0 2px $brand,
inset 0 0 0 3px $brand;
}
}

Expand Down Expand Up @@ -342,3 +352,8 @@ div[class*="actions_"] {
[class^="gameWrapper_"] [class^="icon_"] {
color: $crust;
}

// Darken delete icon on hover
[class^="hoverButton"]:not([class^="anchor"]):hover > svg {
color: $base;
}

0 comments on commit 7e4a986

Please sign in to comment.