Advertisement
aflun

wtf theme

Apr 4th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.60 KB | None | 0 0
  1. /* zebra stripes */
  2. ul.topic-list li.row:nth-child(odd) {
  3.     background-color: #222;
  4. }
  5.  
  6. /* tags */
  7. .category>ul>li .tag-list .tag {
  8.     background-color: #567;
  9. }
  10.  
  11. .category>ul>li:not(.unread) .tag-list .tag {
  12.     color: #333;
  13. }
  14.  
  15. /* @mentions */
  16. .plugin-mentions-a:hover {
  17.     color: #48a;
  18. }
  19.  
  20. .plugin-mentions-a {
  21.     font-size: 1em;
  22. }
  23.  
  24. /* del/ins */
  25. .composer .preview del, .topic .posts .content del, [component="chat/message/body"] del {
  26.     background-color: #722;
  27.     color: inherit;
  28. }
  29.  
  30. .composer .preview del > ins, .topic .posts .content del > ins, [component="chat/message/body"] del > ins {
  31.     background-color: #751;
  32.     color: inherit;
  33. }
  34.  
  35. .composer .preview ins, .topic .posts .content ins, [component="chat/message/body"] ins {
  36.     background-color: #252;
  37.     color: inherit;
  38. }
  39.  
  40. .composer .preview ins > del, .topic .posts .content ins > del, [component="chat/message/body"] ins > del {
  41.     background-color: #037;
  42.     color: inherit;
  43. }
  44.  
  45. /* unread notifications */
  46. ul.notification-list li.unread, ul.chat-list li.unread, .header ul.notification-list li.unread, .header ul.chat-list li.unread {
  47.     background-color: #567!important;
  48. }
  49.  
  50. /* notification toggle */
  51. #menu .notification-list li .mark-read, .header .notification-list li .mark-read, #menu .notification-list li .mark-read:hover, .header .notification-list li .mark-read:hover {
  52.     color: #bbb;
  53. }
  54.  
  55. /* composer */
  56. .composer {
  57.     background-color: #444;
  58. }
  59.  
  60. .composer span.title {
  61.     background-color: #333;
  62.     margin-left: 0px!important;
  63.     color: #ddd;
  64.     padding-top: 4px!important;
  65. }
  66.  
  67. .composer textarea.write {
  68.     background-color: #333;
  69.     color: #ddd;
  70.     border: 1px inset #777;
  71. }
  72.  
  73. .composer .formatting-bar i.fa {
  74.     filter: invert(1);
  75.     -webkit-filter: invert(1);
  76. }
  77.  
  78. .composer .formatting-bar li:hover .fa {
  79.     filter: none;
  80.     -webkit-filter: none;
  81. }
  82.  
  83. .composer input.title {
  84.     margin: 0!important;
  85.     background-color: #333;
  86.     color: #ddd;
  87. }
  88.  
  89. .composer select.category-list {
  90.     background: #333;
  91.     color: #ddd;
  92. }
  93.  
  94. .tag-row input.ui-autocomplete-input {
  95.     background-color: #333;
  96.     color: #ddd;
  97. }
  98.  
  99. .tag-row .bootstrap-tagsinput {
  100.     background-color: #333;
  101. }
  102.  
  103. .tags-container {
  104.     margin-left: 5px;
  105. }
  106.  
  107. /* profile info */
  108. .account .profile .profile-meta strong {
  109.     color: #ddd;
  110. }
  111.  
  112. .account .posts-list .posts-list-item .topic-title {
  113.     color: #aaa;
  114. }
  115.  
  116. /* thanks ben */
  117. body.skin-slate .emoji[data-set-id=tdwtf][data-emoji-id^=fa_] {
  118.     background: none;
  119. }
  120.  
  121. /* onebox background  */
  122. .embedly-card {
  123.     background-color: #ddd;
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement