Advertisement
Maulle

global.js

Sep 21st, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. /*
  2. Jerry-rigged always-visible PM messages.
  3. Very useful on very-active chats like CC.
  4. Otherwise to PM there is much scrolling back and forth.
  5.  
  6. "height:40%" is the original height of the userlist.
  7. Would prefer it to be larger, however Chrome will not allow you to resize elements to be SMALLER than the original.
  8. So set it to be small initially and you're good
  9. */
  10.  
  11. #WikiChatList {
  12. overflow:auto;
  13. padding-bottom:10px;
  14. height:40%;
  15. resize:vertical;
  16. }
  17.  
  18. #Rail {
  19. overflow:hidden;
  20. }
  21.  
  22. #Rail h1.private {
  23. display:block !important;
  24. }
  25.  
  26. /*
  27. See yourself in userlist - PM yourself, or ban yourself if a chat mod...
  28. Can't kick yourself though, that's crazy talk.
  29. */
  30.  
  31. #Rail li {
  32. display:block !important
  33. }
  34.  
  35. /*
  36. Deleted messages still visible
  37. */
  38.  
  39. li.message[style="display: none;"], .message-removed {
  40. display:block !important;
  41. opacity:.5;
  42. }
  43.  
  44. .message.ping { color: blue !important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement