Advertisement
Maulle

PM

Sep 23rd, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.54 KB | None | 0 0
  1. http://community.wikia.com/wiki/User_blog:Thisismyrofl/Suggestion:_Chat_PM_visibility_(With_working_CSS!)
  2.  
  3. /*
  4. Jerry-rigged always-visible PM messages.
  5. Very useful on very-active chats like CC.
  6. Otherwise to PM there is much scrolling back and forth.
  7. */
  8.  
  9. #WikiChatList {
  10. overflow:auto;
  11. padding-bottom:10px;
  12. height:70%; /* Chrome users: recommended to use 40% instead */
  13. resize:vertical;
  14. }
  15.  
  16. #Rail {
  17. overflow:hidden;
  18. }
  19.  
  20. #Rail h1.private {
  21. display:block !important; /* Silver "Private Messages" bar always visible. This makes it clear that the above userlist is limited - and resizable. */
  22. }
  23.  
  24. span.username {
  25. resize:none !important; /* Fix odd Chrome bug: resizable span tags that should not be... */
  26. }
  27.  
  28. /*Also, I've added some extra styling to my global CSS to prettify this further:*/
  29.  
  30. /* Adds gradient shading to chat rail wordmark */
  31. #Rail h1.public {
  32. box-shadow:none;
  33. -webkit-box-shadow:none;
  34. background:#D7D7D7;
  35. background-image:-moz-linear-gradient(top,whitesmoke 0,#D7D7D7 100%);
  36. background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(0,whitesmoke),color-stop(100%,#D7D7D7));
  37. background-image:-o-linear-gradient(top,whitesmoke 0,#D7D7D7 100%);
  38. background-image:-ms-linear-gradient(top,whitesmoke 0,#D7D7D7 100%);
  39. border-bottom:1px solid #BABABA;
  40. margin-top:0px;
  41. text-align:center;
  42. padding-left:0px;
  43. }
  44.  
  45. /* gets rid of the collapsing chevron */
  46. #Rail h1.public img.chevron {
  47. display:none !important;
  48. }
  49.  
  50. /* centers the wordmark */
  51. #Rail h1.public img.wordmark {
  52. vertical-align:baseline;
  53. padding-left:0px;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement