Guest User

Untitled

a guest
Feb 8th, 2020
504
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.47 KB | None | 0 0
  1. /* In light of Feb 2020 update,
  2. This is a workaround for improved usability of Discord in dark theme on Firefox browser */
  3. /* Message background CSS Starts*/
  4. /* Update border-bottom: 1px #33313f solid; to change the slight underline that helps you read*/
  5. .message-2qnXI6{
  6.   background-color: #36393f;
  7.   border-top: 1px #33313f solid;
  8. }
  9. .message-2qnXI6:hover{
  10.   background-color: #36393f !important;
  11. }
  12. .markup-2BOw-j{
  13.   background-color: #36393f;
  14. }
  15. .markup-2BOw-j:hover{
  16.   background-color: #36393f;
  17. }
  18. /* Message background CSS Ends*/
  19. /* Fixing right-click of user menu CSS Starts*/
  20. .contextMenu-HLZMGh{
  21.   background-color: #36393f;
  22. }
  23. /* Removing x mark of blocked-user CSS Starts*/
  24. .blockedIcon-IrnkVA{
  25.   color:#36393f;
  26. }
  27. /* Removing x mark of blocked-user CSS Ends*/
  28. /* Fixing messaging text area CSS Starts*/
  29. .placeholder-37qJjk{
  30.   background-color: inherit;
  31. }
  32. .markup-2BOw-j{
  33.   background-color: inherit;
  34.   /*! margin-left: 50% !important; */
  35. }
  36. .markup-2BOw-j:hover{
  37.   background-color: inherit;
  38. }
  39. /* Fixing messaging text area CSS Ends*/
  40. /* Removing hideous new messages indicator CSS Starts*/
  41. .divider-3_HH5L{
  42.   display: none;
  43. }
  44. /* Removing hideous new messages indicator CSS Ends*/
  45.  
  46. /*-------------------------Floating-Buttons-Starts----------------------------*/
  47.  
  48. /* Comment out or delete the set that you don't need. You can choose to:
  49. 1. Remove only the suggested emoji's
  50. 2. Removing the emoji's option completely
  51. 3. Remove the entire floating bar
  52. */
  53.  
  54. /* 1. Removing only the suggested emoji's in floating buttons CSS Starts*/
  55. .emojiButton-jE9tXC{
  56.   display: none;
  57. }
  58. .emojiSeparator-10VgEJ{
  59.   display: none;
  60. }
  61. /* 1. Removing only the suggested emoji's in floating buttons CSS Ends*/
  62. /* 2. Removing the emoji's option completely from the floating buttons bar CSS Starts */
  63. .button-1ZiXG9[aria-label="Add Reaction"]{
  64.   display: none;
  65. }
  66. /* 2. Removing the emoji's option alltogether from the floating buttons bar CSS Ends */
  67. /* 3. Removing floating buttons bar completely CSS Starts */
  68. .button-1ZiXG9{
  69.   display: none;
  70. }
  71. .buttonContainer-DHceWr{
  72.   display: none;
  73. }
  74. /* 3. Removing floating buttons bar completely CSS Ends*/
  75.  
  76. /*-------------------------Floating-Buttons-Ends------------------------------*/
  77. /*-------------------------Multi-Timestamps-Starts----------------------------*/
  78.  
  79. /* Comment out or delete the set that you don't need. You can choose to:
  80. 1. Remove multiple timestamps for a bunch of messages by same user completely
  81. 2. Hide multiple timestamps but visible when you hover at the region where time is present */
  82.  
  83. /* 1. Remove multiple timestamps for a bunch of messages by same user completely CSS Starts*/
  84. .timestampVisibleOnHover-2bQeI4{
  85.   visibility: hidden;
  86. }
  87. /* 1. Remove multiple timestamps for a bunch of messages by same user completely CSS Ends*/
  88. /* 2. Hide multiple timestamps but visible when you hover at the region where time is present CSS Starts*/
  89. .timestampVisibleOnHover-2bQeI4{
  90.   color: #36393f !important;
  91. }
  92. /* 2. Hide multiple timestamps but visible when you hover at the region where time is present CSS Ends*/
  93.  
  94. /*-------------------------Multi-Timestamps-Ends------------------------------*/
  95.  
  96. /*----------------------------------------------------------------------------*/
  97. /*----------------------------------------------------------------------------*/
  98. /*----------------------------------------------------------------------------*/
  99. /*----------------------------------------------------------------------------*/
  100. /*-----------------------------Experimental-----------------------------------*/
  101. /*----------------------------------------------------------------------------*/
  102. /*----------------------------------------------------------------------------*/
  103. /*----------------------------------------------------------------------------*/
  104. /*----------------------------------------------------------------------------*/
  105.  
  106. /* Unfortunately hiding multiple names of same user from showing while aligning text isn't easy, :( */
  107.  
  108. /* Hiding user name if there is a block of separate messages from same user CSS Starts*/
  109. /*
  110. .compact-T3H92H .username-1A8OIy{
  111.   color: #36393f !important;
  112. }
  113. .groupStart-23k01U .username-1A8OIy{
  114.   color: #ffffff !important;
  115. }
  116. */
  117. .message-2qnXI6.compact-T3H92H .username-1A8OIy{
  118.   visibility: hidden;
  119. }
  120. .message-2qnXI6.groupStart-23k01U.compact-T3H92H .username-1A8OIy{
  121.   visibility: visible;
  122. }
  123. /* Hiding user name if there is a block of separate messages from same user CSS Ends*/
Add Comment
Please, Sign In to add comment