generated from MiniDiscordThemes/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bb5afd
commit d996b54
Showing
7 changed files
with
25 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Hide BetterDiscord elements if user sets --demo-betterdiscord to hidden | ||
// Hide BetterDiscord elements if user sets --demo-clientmod to hidden | ||
|
||
@container demo-betterdiscord style(--demo-betterdiscord: hidden) { | ||
@container demo-clientmod style(--demo-clientmod: hidden) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Hide Replugged elements if user sets --demo-replugged to hidden | ||
// Hide Replugged elements if user sets --demo-clientmod to hidden | ||
|
||
@container demo-replugged style(--demo-replugged: hidden) { | ||
@container demo-clientmod style(--demo-clientmod: hidden) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Containers for showing or hiding client mod elements and text | ||
:root { | ||
container: demo-betterdiscord demo-replugged demo-vencord demo-text; | ||
container: demo-clientmod demo-text; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
// Show or hide client mod elements based on user settings | ||
// Default to visible unless user sets to hidden | ||
|
||
$_mods: betterdiscord, replugged, vencord; | ||
|
||
@each $_mod in $_mods { | ||
@property --demo-#{$_mod} { | ||
syntax: "visible | hidden"; | ||
inherits: false; | ||
initial-value: visible; | ||
} | ||
@property --demo-clientmod { | ||
syntax: "visible | hidden"; | ||
inherits: false; | ||
initial-value: visible; | ||
} |