Skip to content

Commit

Permalink
some fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Leozard committed Nov 25, 2024
1 parent fe833c1 commit 5f0d04d
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 19 deletions.
38 changes: 26 additions & 12 deletions lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -522,10 +522,6 @@
.gameIcon_bf1a22 {
@extend %activityPanelGameIcon !optional;
}
.title_d1da5f {
// Duplicate Class
@extend %activityPanelTitle !optional;
}
.actions_bf1a22 {
@extend %activityPanelActions !optional;
}
Expand Down Expand Up @@ -1283,11 +1279,14 @@
@extend %commandTooltipPointer !optional;
}
.upsellTooltipWrapper_dafa63 {
@extend %upsellTooltipText !optional;
@extend %upsellTooltip !optional;
}
.caretTopCenter_dafa63 {
@extend %upsellTooltipCaretTopCenter !optional;
}
.caretRightCenter_dafa63 {
@extend %upsellTooltipCaretRightCenter !optional;
}
.reactionTooltip_fba897 {
@extend %reactionTooltip !optional;
}
Expand Down Expand Up @@ -2343,6 +2342,9 @@ pre {
.forceShowLook_ec6b19 {
@extend %reactionAddForceShow !optional;
}
.burstGlow_ec6b19 {
@extend %superReactionGlow !optional;
}
.spoilerMarkdownContent_aa9639 {
@extend %spoilerMarkdownContent !optional;
}
Expand Down Expand Up @@ -2550,10 +2552,10 @@ pre {
.fullSize_c69a7b {
@extend %userProfileFull !optional;
}
.statusBubbleOuter_d0a252 {
.statusBubbleOuter_d22603 {
@extend %userProfileStatusBubbleOuter !optional;
}
.statusBubble_d0a252 {
.statusBubble_d22603 {
@extend %userProfileStatusBubble !optional;
}
.banner_d5fdb1 {
Expand Down Expand Up @@ -4832,18 +4834,30 @@ pre {
.soundName_f40049 {
@extend %soundboardSoundName !optional;
}
.soundAddButton_c06ee5 {
@extend %soundboardAdd !optional;
.hoverActiveBackground_f40049 {
@extend %soundboardSoundHover !optional;
}
.soundAddText_c06ee5 {
@extend %soundboardAddText !optional;
}
.secondaryButtonRefresh_f40049 {
@extend %soundboardSecondaryButton !optional;
}
.keybindHint_c66e5e {
@extend %soundboardHint !optional;
}
.refresh_cd703d {
@extend %soundboardRefresh !optional;
}
.soundButtonRefresh_f40049 {
@extend %soundboardButtonRefresh !optional;
}
.soundNameRefresh_f40049 {
@extend %soundboardSoundNameRefresh !optional;
}
.soundAddTextRefresh_c06ee5 {
@extend %soundboardAddTextRefresh !optional;
}
.secondaryButtonRefresh_f40049Refresh {
@extend %soundboardSecondaryButton !optional;
}
.homeContainer_e85cee {
@extend %homeContainer !optional;
}
Expand Down
5 changes: 4 additions & 1 deletion src/general/tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,14 @@
}

// UPSELL
%upsellTooltipText {
%upsellTooltip {
background-color: hsla(0, 0%, 0%, 0.8);
&%upsellTooltipCaretTopCenter:after {
border-bottom-color: hsla(0, 0%, 0%, 0.8);
}
&%upsellTooltipCaretRightCenter:after {
border-left-color: hsla(0, 0%, 0%, 0.8);
}
}

// REACTION
Expand Down
3 changes: 3 additions & 0 deletions src/messages/reaction.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
}
}
}
%superReactionGlow {
border-radius: 3px;
}

/* FORUM REACTIONS */
%forumReaction {
Expand Down
23 changes: 17 additions & 6 deletions src/popouts/soundboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,35 @@
background-color: cv('bg.general.popout');
}
%soundboardButton {
background: $main-color;
%soundboardSoundHover:hover {
background: $hover-color;
}
}

// REDESIGN
%soundboard%soundboardRefresh {
background-color: cv('bg.general.popout');
}
%soundboardButtonRefresh {
background: transparent;
border: 1px solid $main-color;
box-shadow: inset 0 -4px $main-color;
transition: all 0.15s ease-in-out;
&:hover {
&%soundboardSoundHover:hover {
background: $hover-color;
}
&:active:not(:focus-within) {
&%soundboardSoundHover:active:not(:focus-within) {
background: $hover-color;
border: 1px solid $main-color;
box-shadow: inset 0 -2px $main-color;
%soundboardSoundName {
%soundboardSoundNameRefresh {
color: $text-normal;
}
}
}
%soundboardSoundName,
%soundboardAddText,
%soundboardSecondaryButton {
%soundboardSoundNameRefresh,
%soundboardAddTextRefresh,
%soundboardSecondaryButtonRefresh {
color: $text-normal;
}

0 comments on commit 5f0d04d

Please sign in to comment.