Skip to content

Commit

Permalink
eh
Browse files Browse the repository at this point in the history
  • Loading branch information
Leozard committed Sep 11, 2024
1 parent a84af06 commit 4775014
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 49 deletions.
22 changes: 17 additions & 5 deletions lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1303,6 +1303,9 @@
.scroller_fea3ef {
@extend %guilds !optional;
}
.footer_aa1bff {
@extend %guildsFooter !optional;
}
.listItem_c96c45 {
@extend %guild !optional;
}
Expand Down Expand Up @@ -2337,6 +2340,9 @@ pre {
.keyboardShortcutsModal_ad95dc {
@extend %keyboardShortcutsModal !optional;
}
.keybindGroup_ad95dc {
@extend %keybindGroup !optional;
}
.combo_c90023 {
@extend %keybindCombo !optional;
}
Expand Down Expand Up @@ -2659,9 +2665,6 @@ pre {
.pageWrapper_a3a4ce {
@extend %pageWrapper !optional;
}
.footer_aa1bff {
@extend %discover !optional;
}
.search_f69601 {
@extend %discoverSearch !optional;
}
Expand Down Expand Up @@ -5354,11 +5357,20 @@ pre {
.footer_fa823b {
@extend %everyoneWarningFooter !optional;
}
.skuSelectModalHeader_f92df2 {
@extend %giftModalSelectTierHeader !optional;
}
.skuSelectModalContent_f92df2 {
@extend %giftModalSelectTier !optional;
}
.modalHeaderCustomGift_a27f2f {
@extend %giftModalHeader !optional;
}
.iconBackground_e4d3f1 {
@extend %giftModalIconBackground !optional;
.customGiftBoxHighlighted_c4afc7 {
@extend %giftModalGiftBoxSelected !optional;
}
.selectedPlan_bd3462 {
@extend %giftModalPlanSelected !optional;
}
.spinner_b0f29a {
@extend %giftModalSpinner !optional;
Expand Down
13 changes: 5 additions & 8 deletions src/guilds/guilds.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@
box-shadow: inset 0 0 20px rgba(0, 0, 0, calc(#{cv('bg.app.shading')} * 0.3));
}

// GUILD LIST
%themeDark %guilds {
background: transparent;
}
%guildsTree {
outline: none;
}

// HOME BUTTON
%guildChildWrapper > svg {
width: 100%;
Expand Down Expand Up @@ -144,3 +136,8 @@
%guildSeparator {
background: hsla(0, 0%, 100%, 0.1);
}

// FOOTER - currently only in experiments
%guildsFooter {
background: transparent;
}
46 changes: 24 additions & 22 deletions src/modals/keyboardShortcuts.scss
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
/* KEYBOARD SHORTCUTS MODAL */
%themeDark {
%keyboardShortcutsModal {
background-color: hsla(0, 0%, 0%, 0.5);
}
%keybindCombo {
%keybindShortcutKey {
background: transparent;
border: 1px solid $main-color;
border-radius: 3px;
box-shadow: inset 0 -4px $main-color;

%keyboardShortcutsModal {
background-color: hsla(0, 0%, 0%, 0.5);
}
%keybindGroup {
background-color: transparent;
}
%keybindCombo {
%keybindShortcutKey {
background: transparent;
border: 1px solid $main-color;
border-radius: 3px;
box-shadow: inset 0 -4px $main-color;
color: hsla(0, 0%, 100%, 0.7);
transition: all 0.15s ease-in-out;
cursor: pointer;
&:hover {
background: $hover-color;
color: #fff;
}
&:active {
border: 1px solid $hover-color;
box-shadow: inset 0 -2px $main-color;
color: hsla(0, 0%, 100%, 0.7);
transition: all 0.15s ease-in-out;
cursor: pointer;
&:hover {
background: $hover-color;
color: #fff;
}
&:active {
border: 1px solid $hover-color;
box-shadow: inset 0 -2px $main-color;
color: hsla(0, 0%, 100%, 0.7);
}
}
}
}
}
18 changes: 10 additions & 8 deletions src/modals/otherModals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -203,22 +203,24 @@

// GIFT MODAL
/*other modals, nitro gift*/
/*header*/
%giftModalSelectTierHeader,
%giftModalSelectTier {
background: transparent;
}
%giftModalHeader {
background: transparent;
border-bottom: 1.5px solid $main-color;
}
/*check out the shop icon*/
%giftModalIconBackground {
background: $main-color;
> svg {
fill: #fff;
}
%giftModalGiftBoxSelected {
border: 2px solid $main-color;
}
%giftModalPlanSelected {
outline: 2px solid $main-color;
}
/*loading screen*/
%giftModalSpinner {
background: rgba(0, 0, 0, 0.4);
}

// YOU MUST COMPLETE A FEW MORE STEPS BEFORE YOU CAN TALK
/*before you talk here popup*/
%beforeTalkRuleContainer {
Expand Down
6 changes: 0 additions & 6 deletions src/pages/discover.scss
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,4 @@
}
%discoverQuestItemName {
color: $main-color !important;
}

// Idk, probably already here but I'm just getting back into things.
// It's at the bottom of the servers list. - Snow
%discover {
background: rgba(0, 0, 0, calc(#{cv('bg.app.shading')} * 0.3));
}

0 comments on commit 4775014

Please sign in to comment.