Advertisement
Darl181

Omnomirc Stuffs Userstyle 26/10/13

Oct 26th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. @-moz-document url("http://omnomirc.www.omnimaga.org/") {
  2.  
  3. #Channels {
  4. width: 100% !important;
  5. }
  6.  
  7. #topicBox {
  8. width: 100% !important;
  9. border-left: none !important;
  10. /* box-shadow: 0 2px 2px rgba(0,0,0,0.5) !important; */
  11. /* meh shadows, line highlight messes them up */
  12. }
  13.  
  14. #topic {
  15. margin-bottom: 2px !important;
  16. margin-top: -1px !important;
  17. }
  18.  
  19. input[type="text"] {
  20. width: 83% !important;
  21. }
  22.  
  23. #UserListContainer {
  24. height: 100% !important;
  25. border-radius: 0 !important;
  26. margin-top: 0 !important;
  27. border: none !important;
  28. border-left: 1px solid #999 !important;
  29. /*
  30. OR REPLACE WITH PROPER BORDER COLOR
  31. #999 IN V5R
  32. */
  33. left: 90% !important;
  34. width: 10% !important;
  35. /* box-shadow: -2px 4em 2px rgba(0,0,0,0.4) !important; */
  36. }
  37.  
  38. #UserList {
  39. height: calc(100% - 4em) !important;
  40. background-color: #cacaca !important;
  41. left: 0 !important;
  42. padding-left: 1em !important;
  43. padding-top: 2px !important;
  44. border-top: 1px solid threedshadow !important;
  45. transition: 1s 1s background-color !important;
  46. }
  47.  
  48. #UserList:hover {
  49. background-color: #dfdfdf !important;
  50. transition: 0.5s 0.25s background-color !important;
  51. }
  52.  
  53. .arrowButtonHoriz2:nth-child(1) {
  54. /* all arrows */
  55. /* this part achieves so much :o */
  56. }
  57.  
  58. .arrowButtonHoriz2, .arrowButtonHoriz3 > div {
  59. /* both top */
  60. margin-top: 2.5em !important;
  61. }
  62.  
  63. #windowbg2 > span:nth-child(8) > div {
  64. /* main bottom */
  65. margin-bottom: 1.5em !important;
  66. }
  67.  
  68. #UserListContainer .arrowButtonHoriz3 > div {
  69. /* userlist top */
  70. margin-top: 4.3em !important;
  71. }
  72.  
  73. #UserListContainer > *:nth-child(4) > div {
  74. /* userlist bottom */
  75. margin-top: -1.5em !important;
  76. }
  77.  
  78. td.chan,
  79. td.curchan {
  80. /* border-radius: 0 !important; */
  81. }
  82.  
  83. td.chan:hover {
  84. padding-top: 3px !important;
  85. }
  86.  
  87. td.action > a {
  88. margin-right: 0px !important;
  89. }
  90.  
  91. td.action > a > span {
  92. margin-right: -5px !important;
  93. }
  94.  
  95. /* replacing hardcoded colors -
  96. #dfdfdf is light bg, #cacaca is dark bg, #999 is border */
  97. #mBoxCont {
  98. width: 90% !important;
  99. }
  100.  
  101. .message {
  102. word-wrap: break-word !important;
  103. }
  104.  
  105. #scrollbar {
  106. background-color: #cacaca !important;
  107. box-shadow: none !important;
  108. transition: background-color 1s 1s, box-shadow 1s 1s !important;
  109. -webkit-transition: background-color 1s 1s, box-shadow 1s 1s !important;
  110. border-radius: 2px !important;
  111. }
  112.  
  113. #scrollbar:hover {
  114. background-color: #dfdfdf !important;
  115. box-shadow: none !important;
  116. transition: background-color .5s .25s, box-shadow 1s 0s !important;
  117. -webkit-transition: background-color .5s .25s, box-shadow 1s 0s !important;
  118. }
  119.  
  120. #scrollbar:active {
  121. background-color: #dfdfdf !important;
  122. box-shadow: 0 0 4px #999 !important;
  123. transition: background-color 0s 0s, box-shadow 0s 0s !important;
  124. -webkit-transition: background-color 0s 0s, box-shadow 0s 0s !important;
  125. }
  126.  
  127. /* placeholder until the track gets an id
  128. *SORUNOME POKE POKE* */
  129. body > *:nth-child(16) {
  130. background-color: #cacaca !important;
  131. border: 1px solid #999 !important;
  132. border-top: none !important;
  133. top: 38px !important;
  134. width: 6px !important;
  135. left: calc(90% - 16px) !important;
  136. }
  137.  
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement