Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2. /* Thans Qeb for supplying the original code! */
  3.  
  4. @-moz-document regexp("https?://plug\.dj/(?!(communities|terms|privacy)/?.*).*"){
  5.  
  6. /* Interface stuff */
  7. #header,
  8. #footer,
  9. #user-lists,
  10. #user-lists .user:hover,
  11. #waitlist,
  12. #waitlist .user:hover,
  13. #chat,
  14. .group,
  15. #chat-messages .input-background,
  16. #user-lists .input-background,
  17. #chat-input,
  18.  
  19. /* Chat output */
  20. #chat,
  21. #chat-messages .list:nth-child(odd),
  22. #chat-messages .message:nth-child(odd),
  23. #chat-messages .welcome:nth-child(odd),
  24. .update:nth-child(odd),
  25. #chat-messages .skip:nth-child(odd),
  26. .moderation:nth-child(odd),
  27. .emote:nth-child(odd),
  28. .mention:nth-child(odd){
  29. /*background-image: none !Important;*/
  30. background-color: rgba(0,0,0,0.50) !Important;
  31. }
  32.  
  33. /* Padding fix for darkened chat items */
  34. #chat-messages .list:nth-child(odd),
  35. #chat-messages .message:nth-child(odd),
  36. #chat-messages .welcome:nth-child(odd),
  37. .update:nth-child(odd),
  38. #chat-messages .skip:nth-child(odd),
  39. .moderation:nth-child(odd),
  40. .emote:nth-child(odd),
  41. .mention:nth-child(odd){
  42. padding-right: 6px !Important;
  43. }
  44.  
  45. /* Darkened items for improved visibility */
  46. #chat-header,
  47. .header-panel-button.selected,
  48. #user-lists .header,
  49. #user-lists .user,
  50. #waitlist .user,
  51. #header .button.selected{
  52. background-color: rgba(0,0,0,0.25) !Important;
  53. }
  54.  
  55. /* Items that needed to have no color */
  56. .list,
  57. #chat-messages .message,
  58. #chat-messages .welcome,
  59. .update,
  60. #chat-messages .skip,
  61. .moderation,
  62. .emote,
  63. .mention{
  64. background: transparent !Important;}
  65.  
  66. /* Readibility fix for persons hard of seeing.
  67. Remove or modify as required. */
  68. /* --> Most UI items - Text shadow */
  69. #header,
  70. #next-media-title,
  71. #next-media-label,
  72. #footer .right-meta,
  73. #chat-messages,
  74. #user-lists,
  75. #waitlist,
  76. #chat-input-field,
  77. #user-filter-input{
  78. text-shadow: 0px 0px 1px black,
  79. 0px 0px 1px black,
  80. 0px 0px 1px black !important;
  81. }
  82. #store-button,
  83. .timestamp{
  84. text-shadow: none !Important;
  85. }
  86.  
  87. /* --> Fixes for text shadow cutoff */
  88. #header .bar-value,
  89. #room-host,
  90. #now-playing-dj,
  91. #next-media-title,
  92. #next-media-label,
  93. #user-panel .name{
  94. padding-left: 6px !Important;
  95. }
  96. #user-panel .name{
  97. margin-left: -6px !Important;
  98. }
  99. #header .username{
  100. padding-right: 6px !Important;
  101. }
  102.  
  103. /* --> Lighter dark label / Dark font settings */
  104. .dark-label,
  105. #footer .label{
  106. color: rgb(128, 134, 145) !important;
  107. }
  108.  
  109. /* De-colorizes the bottom of the selected item in the userlist. Because. */
  110. .button.selected{
  111. border-bottom: none !Important;
  112. }
  113.  
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement