Advertisement
Kirah

Untitled

Apr 21st, 2025 (edited)
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.92 KB | Source Code | 0 0
  1. /**
  2.   * @name OldCord
  3.   * @version 1.0
  4.   * @author @milbit
  5.   * @source https://github.com/milbits/oldcord
  6.   * @description Restores discord's 2020 UI
  7. */
  8.  
  9. @import url("https://milbits.github.io/oldcord/src/components/vars.css");
  10. @import url("https://milbits.github.io/oldcord/src/components/color.css");
  11. @import url("https://milbits.github.io/oldcord/src/components/imgs.css");
  12. @import url("https://milbits.github.io/oldcord/src/components/other.css");
  13. /* @import url("https://milbits.github.io/oldcord/src/components/profile.css"); */
  14. @import url("https://milbits.github.io/oldcord/src/components/redesign.css");
  15.  
  16.  
  17. /*
  18. Addons
  19. remove a "/*" below to enable one
  20. */
  21.  
  22. /*@import url("https://milbits.github.io/oldcord/src/components/oldEmojis.css");*/
  23. /*@import url("https://milbits.github.io/oldcord/src/components/oldContext.css");*/
  24. /* @import url("https://milbits.github.io/oldcord/src/components/showEffects.css"); */
  25.  
  26. /* Options */
  27.  
  28. :root {
  29.     /* Re-adds the animation for reactions. Might look weird | 0 - off | 1 - on*/
  30.     --reaction-animation: 1;
  31.     --channels-default: #90969d !important;
  32. }
  33.  
  34.  
  35. /* ================================ profile.css ======================== */
  36.  
  37.  
  38. /* ================================ showEffects.css ======================== */
  39.  
  40.  
  41.  
  42.  
  43.  
  44. /* ================================ custom ======================== */
  45.  
  46.  
  47. [class^="upperContainer__"] [class^="children__"] {
  48.     flex-wrap: nowrap;
  49.     justify-content: flex-start;
  50.     width: 0px;
  51. }
  52.  
  53. [class^="children__"] [class^="topic__"] {
  54.     text-overflow: ellipsis;
  55.     overflow: hidden;
  56.     max-width: 70%;
  57. }
  58.  
  59. /* список каналов */
  60. [class^="sidebarList_"], [class^="sidebarList_"] > [class^="container"] {
  61.     background-color: #303135 ;
  62. }
  63.  
  64. [class^="containerDefault"] [class^="link"]{
  65.     color: #8b8e94
  66. }
  67.  
  68. [class*="selected"] > [class*="selectedChannel"] > div > a {
  69.     background-color: #424449;
  70. }
  71.  
  72. /* чат */
  73. [class*="chatContent"] > div, [class*="chatContent"] > form  {
  74.     background-color: #34363a;
  75. }
  76.  
  77.  
  78.  
  79. [id^="popout"] [class*="container"], [id^="popout"] [class*="outer"]{
  80.     margin: 0px;
  81.     padding: 0px;
  82.     padding-top: 0px !important;
  83.     padding-bottom: 0px;
  84. }
  85.  
  86. [id^="popout"] [class*="outer"]{
  87.     background-color: #303135;
  88. }
  89.  
  90. /*
  91. [id^="popout"] [class*="header"] > [class*="avatar"] {
  92.     position: relative;
  93.     left: 85px;
  94.     padding-top: 30px;
  95. }
  96. */
  97.  
  98. /*
  99. [class*="experimentWrapper"] [class*="buttonSection"] [class*="attachedCaretButtonContainer"] div:nth-child(3) {
  100.     display: none;
  101. }
  102. */
  103.  
  104. [class*="experimentWrapper"] > div:nth-child(2) > div:nth-child(3) {
  105.     left: 0px;
  106.     position: absolute;
  107. }
  108.  
  109. [id^="popout"] [class*="picker"] {
  110.     background-color: #333438;
  111. }
  112.  
  113. [id^="chat-messages"]:hover {
  114.     background-color: #3d3f45;
  115. }
  116.  
  117. [class^="mention"], [class^="botTag"], [class^="markup"] [class^="wrapper"], [class^="channelMention"] {
  118.     color: #EEE;
  119.     background-color: rgba(100,100,250,0.5);
  120.     border-radius: 5px;
  121. }
Tags: discord CSS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement