Skip to content

Commit

Permalink
AA
Browse files Browse the repository at this point in the history
  • Loading branch information
Leozard committed Oct 31, 2024
1 parent 75f4447 commit 6555ebd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
9 changes: 9 additions & 0 deletions lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5471,6 +5471,9 @@ pre {
.rowContainer_e5da8b {
@extend %appPopoutRowItem !optional;
}
.rowDivider_e5da8b {
@extend %appPopoutRowItemUnderline !optional;
}
.viewMore_b7ba1b {
@extend %appPopoutViewMore !optional;
}
Expand Down Expand Up @@ -5513,6 +5516,12 @@ pre {
.container_fb1469 {
@extend %appPopoutLearnMore !optional;
}
.clickable_b78bb6 {
@extend %appPopoutSearchItem !optional;
}
.underline_b78bb6 {
@extend %appPopoutSearchItemUnderline !optional;
}
.emojiCounter_cf5d0a {
@extend %webhookEmojiRow !optional;
}
Expand Down
25 changes: 22 additions & 3 deletions src/popouts/applicationPopout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,22 @@
%appPopoutItem {
background-color: rgba(0, 0, 0, 0.2);
border-radius: 10px;
&:hover {
&:hover,
&:active {
background-color: hsla(0, 0%, 100%, 0.07);
}
&%appPopoutRowItem {
background-color: transparent;
&:hover {
background-color: transparent;
&:hover,
&:active {
background-color: hsla(0, 0%, 100%, 0.07);
border-radius: 3px;
}
}
}
%appPopoutRowItemUnderline {
right: 4px;
}
%appPopoutViewMore {
%textMediumMedium {
color: $main-color !important;
Expand Down Expand Up @@ -100,3 +106,16 @@
%appPopoutLearnMore {
background-color: transparent;
}

// SEARCH
%appPopoutSearchItem {
background-color: transparent;
&:hover,
&:active {
background-color: hsla(0, 0%, 100%, 0.07);
border-radius: 3px;
}
}
%appPopoutSearchItemUnderline {
right: 4px
}

0 comments on commit 6555ebd

Please sign in to comment.