This repository has been archived by the owner on Jan 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
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
Showing
19 changed files
with
762 additions
and
874 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
@use './src/powercord'; |
This file was deleted.
Oops, something went wrong.
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,9 +1,9 @@ | ||
{ | ||
"name": "Name Badges", | ||
"description": "Some nice custom badges for next to usernames.", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"author": "LuckFire#4800", | ||
"theme": "./src/main/mods/powercord.scss", | ||
"theme": "index.scss", | ||
"consent": "true", | ||
"license": "MIT" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@use 'badges'; | ||
|
||
@each $userID, $badgeLink in badges.$users { | ||
[data-author-id='#{$userID}'] .username-1A8OIy, // Messaegs | ||
[data-user-id="#{$userID}"] + .header-3uLluP, // Beginning of DMs | ||
[data-user-id="#{$userID}"] + .text-37NqbO .username-2b1r56, // Friends List | ||
[data-user-id="#{$userID}"] + .listName-U3shDM .username-2b1r56 // Mutual Friends | ||
{ | ||
&::before { | ||
content: ''; | ||
background: url($badgeLink) center/100% no-repeat; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@forward 'users'; | ||
@forward 'positioning'; |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#app-mount { | ||
.nameAndDecorators-5FJ2dg .name-uJV0GL .overflow-WK9Ogt, // Private Messages List | ||
.nameAndDecorators-5FJ2dg .name-uJV0GL span, // Members List | ||
.listAvatar-1BbvHX + .listName-U3shDM .username-2b1r56 // Mutual Friends | ||
{ | ||
&::before { | ||
padding: 0 8px 0 8px; | ||
margin-right: 4px; | ||
} | ||
} | ||
|
||
.wrapper-2a6GCs h2 .username-1A8OIy, // Messages | ||
.userInfo-2zN2z8 .wrapper-3t9DeA + .text-37NqbO .username-2b1r56, // Friends List | ||
.userPopout-xaxa6l .headerTagUsernameNoNickname-1ZLDYY, // User Popout - No Nickname | ||
.userPopout-xaxa6l .nickname-2gQ76l // User Popout - Has Nickname | ||
{ | ||
&::before { | ||
padding: 0 10px 0 10px; | ||
margin-right: 4px; | ||
} | ||
} | ||
|
||
.wrapper-3t9DeA + .header-3uLluP // Beginning of DMs | ||
{ | ||
&::before { | ||
padding: 0 12px 0 12px; | ||
margin-right: 4px; | ||
} | ||
} | ||
} |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...n/mods/betterdiscord/NameBadges.theme.css → src/betterdiscord/NameBadges.theme.css
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,11 +1,11 @@ | ||
/** | ||
* @name Name Badges | ||
* @version 1.3.0 | ||
* @version 1.4.0 | ||
* @description Some nice custom badges for next to usernames. | ||
* @author LuckFire#4800 | ||
* | ||
* @website https://github.com/Discord-Theme-Addons | ||
* @source https://github.com/Discord-Theme-Addons/name-badges/tree/main/src | ||
**/ | ||
|
||
@import url('https://discord-theme-addons.github.io/name-badges/src/main/mods/betterdiscord/bd-compile.css'); | ||
@import url('https://discord-theme-addons.github.io/name-badges/src/betterdiscord/bd-compile.css'); |
Oops, something went wrong.