134 lines
4.4 KiB
CSS
134 lines
4.4 KiB
CSS
/* ---------------------------------------------- */
|
||
/* Ниже идут импорты стилей для дизайна 2020 года */
|
||
/* ---------------------------------------------- */
|
||
|
||
/*Everything in one*/
|
||
/*@import url("https://milbits.github.io/oldcord/src/main.css");*/
|
||
|
||
/* If you want to enable/disable each part (like disable profile theming), remove the above line and a [slash]* below. */
|
||
|
||
/* I don't recommend disabling this */
|
||
@import url("https://milbits.github.io/oldcord/src/components/vars.css");
|
||
|
||
/* Restores old blurple n stuff*/
|
||
@import url("https://milbits.github.io/oldcord/src/components/color.css");
|
||
|
||
/* 2020 default avatars and other icons */
|
||
@import url("https://milbits.github.io/oldcord/src/components/imgs.css");
|
||
|
||
/* Random stuff that add to the theme */
|
||
@import url("https://milbits.github.io/oldcord/src/components/other.css");
|
||
|
||
/* Restores the original 2020 Profile UI. Disables cosmetics by default, look at "addons" below */
|
||
/*@import url("https://milbits.github.io/oldcord/src/components/profile.css");*/
|
||
|
||
/* The old Discord layout, pre-2025. */
|
||
@import url("https://milbits.github.io/oldcord/src/components/redesign.css");
|
||
|
||
/*
|
||
* Addons
|
||
*/
|
||
|
||
/* profile cosmetics! woah! funky banners and colors and nametags and stuff! so cool! */
|
||
/*@import url("https://milbits.github.io/oldcord/src/components/showEffects.css");*/
|
||
|
||
/* Clan tags ( [🗡️CLAN] )*/
|
||
/*@import url("https://milbits.github.io/oldcord/src/components/showTags.css");*/
|
||
|
||
/* The old emojis */
|
||
/*@import url("https://milbits.github.io/oldcord/src/components/oldEmojis.css");*/
|
||
|
||
/* Old color when you use right click menus*/
|
||
@import url("https://milbits.github.io/oldcord/src/components/oldContext.css");
|
||
|
||
:root {
|
||
--oldcord-tint: 210;
|
||
/*Light mode tint. Has to be hue in HSL*/
|
||
--oldcord-tint-intensity: 11.11;
|
||
/*Tint intensity/Saturation. 0 for grayscale, 10000 for an awesome party*/
|
||
|
||
--reaction-animation: 0;
|
||
/*animation when someone reacts. 0 off 1 on. buggy.*/
|
||
}
|
||
|
||
/* ----------------------------- */
|
||
/* Ниже идут мои кастомные стили */
|
||
/* ----------------------------- */
|
||
|
||
/* Убрать пидорские шрифты у ника */
|
||
/* *[data-list-item-id^="member"] [role="button"] span, */
|
||
/* *[data-list-item-id^="user"] span, */
|
||
[class*='displayName'],
|
||
[class*='displayName'] *,
|
||
[class*='username'],
|
||
[class*='username'] *,
|
||
[class*='name'],
|
||
[class*='name'] * {
|
||
font-family: inherit !important;
|
||
|
||
/* remove decorations/effects */
|
||
background-image: none !important;
|
||
-webkit-background-clip: initial !important;
|
||
background-clip: initial !important;
|
||
-webkit-text-fill-color: initial !important;
|
||
-webkit-text-stroke-width: 0 !important;
|
||
text-decoration: none !important;
|
||
text-shadow: none !important;
|
||
filter: none !important;
|
||
mix-blend-mode: normal !important;
|
||
transition: none !important;
|
||
}
|
||
|
||
[class*='animated'],
|
||
[class*='animated'] *,
|
||
[class*='animated'] *::before,
|
||
[class*='animated'] *::after {
|
||
animation: none !important;
|
||
background: none !important;
|
||
color: inherit !important;
|
||
}
|
||
|
||
[style*='--custom-display-name-styles-'] {
|
||
--custom-display-name-styles-main-color: currentColor !important;
|
||
}
|
||
|
||
/* Убрать пидорские активитис над списком онлайна */
|
||
[class*='membersGroup']:has([role=button]),
|
||
[class*='member'] [class*='container']:has([class*='badges']) {
|
||
display: none;
|
||
}
|
||
|
||
/* Удалить рекламу нитро и магазин говна над личными сообщениями */
|
||
a[data-list-item-id*="nitro"],
|
||
a[data-list-item-id*="shop"] {
|
||
display: none !important;
|
||
}
|
||
|
||
/* Удаляет декорации фона в списке онлайна */
|
||
.container__4bbc6 {
|
||
display: none;
|
||
}
|
||
|
||
/* Удаляет часовой фильм при открытии профиля */
|
||
.profileEffects__01370 {
|
||
display: none;
|
||
}
|
||
|
||
/* Удаляет пидорские аватарки */
|
||
[class*='avatarDecoration'],
|
||
[class*='guildTagContainer'],
|
||
[class*='clanTag'] {
|
||
display: none;
|
||
}
|
||
|
||
/* Удаляет гифт и игры справа от сообщения и в войсе */
|
||
[aria-label="Send a gift"],
|
||
[aria-label="Start An Activity"],
|
||
.buttonContainer_e6e74f.app-launcher-entrypoint {
|
||
display: none;
|
||
}
|
||
|
||
/*.childContainer__91a9d {*/
|
||
/* Исправляет длину статуса, если не юзать oldCord */
|
||
/*padding: 0 8px 0 0px !important;*/
|
||
/*}*/
|