mirror of
https://github.com/KrstlSkll69/vc-snippets.git
synced 2025-04-19 20:55:22 +02:00
added stage recolor, added new 'Nsfw' Icon
This commit is contained in:
parent
0928388f4a
commit
7197840d71
4 changed files with 73 additions and 14 deletions
|
@ -26,7 +26,7 @@
|
|||
fill: var(--green-360) !important;
|
||||
}
|
||||
|
||||
/*-------------------------------------------*/
|
||||
/*-------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/*--- 'NSFW' Channel List Icon Recolor ---*/
|
||||
.icon_d8bfb3:has(path[d^="M18.09 1.63"]) path[d^="M18.09 1.63"] {
|
||||
|
@ -47,7 +47,13 @@
|
|||
.icon_f23da8 path[d^="M18.09 1.63"] {
|
||||
fill: var(--status-danger-background) !important;
|
||||
}
|
||||
/*-------------------------------------------*/
|
||||
|
||||
/*--- Werid 'NSFW' Thread Icon Message Bar Icon Recolor ---*/
|
||||
.icon_f23da8 path[d^="M18.09 15.63c.4-.7" ] {
|
||||
fill: var(--status-danger-background) !important;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/*--- Lock Icon Channel List Recolor ---*/
|
||||
.icon_d8bfb3:has(path[d^="M16 4h.5v"]) path[d^="M16 4h.5v"] {
|
||||
|
@ -74,3 +80,20 @@
|
|||
.icon_f23da8 path[d^="M16 4h.5v"] {
|
||||
fill: var(--yellow-200) !important;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/*--- Channel List Outer Circle Icon Recolor ---*/
|
||||
.icon_d8bfb3:has(path[d^="M19.61 18.25a1.08"]) path[d^="M19.61 18.25a1.08"] {
|
||||
color: var(--blue-330) !important;
|
||||
}
|
||||
|
||||
/*--- Channel List Outer Circle Icon Recolor(Locked Stage) ---*/
|
||||
.icon_d8bfb3:has(path[d^="M21.92 14.08c.32"]) path[d^="M21.92 14.08c.32"]{
|
||||
color: var(--blue-330) !important;
|
||||
}
|
||||
|
||||
/*--- Chat Icon Recolor ---*/
|
||||
.icon_fc4f04 path[d^="M19.61 18.25a1.08"] {
|
||||
fill: var(--blue-330) !important;
|
||||
}
|
|
@ -25,3 +25,8 @@
|
|||
.icon_f23da8 path[d^="M18.09 1.63"] {
|
||||
fill: var(--status-danger-background) !important;
|
||||
}
|
||||
|
||||
/*--- Werid 'NSFW' Thread Icon Message Bar Icon Recolor ---*/
|
||||
.icon_f23da8 path[d^="M18.09 15.63c.4-.7" ] {
|
||||
fill: var(--status-danger-background) !important;
|
||||
}
|
||||
|
|
32
README.md
32
README.md
|
@ -6,8 +6,7 @@ Important -
|
|||
2. As per a request 'NSFW' Label now appears that top of chat
|
||||
3. There is no icon diff for a stage marked 'NSFW' on desktop so those arnt labeled *(until i find a way to label them)*
|
||||
4. People have been asking for this on Vendetta/Pyoncord(Bunny) and for those people id like to point you too [NexxUtils](https://bunny.nexpid.xyz/nexxutils/)
|
||||
- About Enmity
|
||||
I dont know about nor do i care about Enmity *(If you do and this exist for it feel free to open a issue an tell me then ill add it here
|
||||
- About Enmity - I dont know about nor do i care about Enmity
|
||||
|
||||
----
|
||||
|
||||
|
@ -17,8 +16,8 @@ Adds a small RED text box that says NSFW next to those channels and also colors
|
|||
BEFORE AND AFTER:
|
||||
(hopfully you can tell which is which)
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
----
|
||||
|
@ -29,8 +28,8 @@ Recolors the triangle of 'NSFW' channels.
|
|||
BEFORE AND AFTER:
|
||||
(hopfully you can tell which is which)
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
----
|
||||
|
@ -41,8 +40,8 @@ Recolors the lock icon of a private channel.
|
|||
BEFORE AND AFTER:
|
||||
(hopfully you can tell which is which)
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
----
|
||||
|
||||
|
@ -52,12 +51,23 @@ Recolors the icon on Channel & Role tab so they are easier to see/notice
|
|||
BEFORE AND AFTER:
|
||||
(hopfully you can tell which is which)
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
----
|
||||
|
||||
5th: IconRecolors
|
||||
5th: Channels & Roles Recolor:
|
||||
Recolors the icon For Stages so they are easier to see/notice
|
||||
|
||||
BEFORE AND AFTER:
|
||||
(hopfully you can tell which is which)
|
||||
|
||||

|
||||

|
||||
|
||||
----
|
||||
|
||||
6th: IconRecolors
|
||||
Recolors all the icons so that you don't need 3 different snippets for it.
|
||||
|
||||
----
|
||||
|
|
21
StageRecolor.css
Normal file
21
StageRecolor.css
Normal file
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* @name Stage Recolor
|
||||
* @author KrystalSkullOfficial
|
||||
* @version 5.0
|
||||
* @description recolors the icon for stages so they are easier to see/notice
|
||||
*/
|
||||
|
||||
/*--- Channel List Outer Circle Icon Recolor ---*/
|
||||
.icon_d8bfb3:has(path[d^="M19.61 18.25a1.08"]) path[d^="M19.61 18.25a1.08"] {
|
||||
color: var(--blue-330) !important;
|
||||
}
|
||||
|
||||
/*--- Channel List Outer Circle Icon Recolor(Locked Stage) ---*/
|
||||
.icon_d8bfb3:has(path[d^="M21.92 14.08c.32"]) path[d^="M21.92 14.08c.32"]{
|
||||
color: var(--blue-330) !important;
|
||||
}
|
||||
|
||||
/*--- Chat Icon Recolor ---*/
|
||||
.icon_fc4f04 path[d^="M19.61 18.25a1.08"] {
|
||||
fill: var(--blue-330) !important;
|
||||
}
|
Loading…
Add table
Reference in a new issue