Advertisement
matt_mods

Better Discord Transparency Fix

Nov 26th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. /*
  2.   Fixes transparency themes that was broken due to the latest October '17 update,
  3.   This fix replaces all older transparency fixes, while also being able to be used as a base for your new themes.
  4.   Might not always work for all themes,
  5.   If there are any glaring issues that are caused by the fix, don't even bother asking for support and just modify the code as you see fit.
  6. */
  7.  
  8. #app-mount,
  9. #friends,
  10. .app .layers .layer,
  11. .app .layers .layer>[class*='container-'],
  12. .app .layers,
  13. .content-region,
  14. .guilds-wrapper,
  15. .sidebar-region,
  16. .ui-standard-sidebar-view,
  17. [class*='activityFeed-'],
  18. [class*='channels-'],
  19. [class*='titleBar-']
  20. {
  21.   /* Too dark or too bright? Adjust the opacity (`0.15`) to something lower or higher */
  22.   background: rgba(0,0,0,0.11) !important;
  23. }
  24.  
  25. #friends .friends-table,
  26. .channel-members,
  27. .channel-members-loading,
  28. .chat .content,
  29. .chat form,
  30. .chat,
  31. .content .flex-spacer,
  32. .messages-wrapper,
  33. .typing,
  34. [class*='channels-'] [class*="container-"],
  35. [class*='headerBar-'],
  36. [class*='titleWrapper-'] [class*='title-']
  37. {
  38.   background: transparent !important;
  39. }
  40.  
  41. .messages-wrapper + form {
  42.   box-shadow: none !important;
  43. }
  44. .scrollerWrap-2uBjct{
  45. background:transparent !important;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement