Advertisement
johnlockwood

irccloud message style for FireFox

Aug 19th, 2011
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. /*
  2. * Edit this file and copy it as userContent.css into your
  3. * profile-directory/chrome/
  4. */
  5.  
  6. /*
  7. * This file can be used to apply a style to all web pages you view
  8. * Rules without !important are overruled by author rules if the
  9. * author sets any. Rules with !important overrule author rules.
  10. */
  11.  
  12. /*
  13. * example: turn off "blink" element blinking
  14. *
  15. * blink { text-decoration: none ! important; }
  16. *
  17. */
  18.  
  19. /*
  20. * example: give all tables a 2px border
  21. *
  22. * table { border: 2px solid; }
  23. */
  24.  
  25. /*
  26. * example: turn off "marquee" element
  27. *
  28. * marquee { -moz-binding: none; }
  29. *
  30. */
  31.  
  32. /*
  33. * For more examples see http://www.mozilla.org/unix/customizing.html
  34. */
  35.  
  36. /*
  37. irccloud messages
  38. */
  39.  
  40. .messageRow.type_buffer_msg
  41. {
  42. font:95%/1 "Lucida Grande","Helvetica Neue","Arial",sans-serif;
  43. line-height:1.8em ! important;
  44. padding-bottom: 6px !important;
  45. }
  46.  
  47. .messageRow.type_buffer_msg .message
  48. {
  49. font:95%/1 "Lucida Grande","Helvetica Neue","Arial",sans-serif;
  50. }
  51.  
  52. .messageRow.type_buffer_msg .author
  53. {
  54. color:#ff9900;
  55. }
  56.  
  57. #buffer div.scroll span.author, #buffer div.scroll div.me a.user
  58. {
  59. font: 12px/1.25 "Lucida Grande","Helvetica Neue","Arial",sans-serif ! important;
  60. }
  61.  
  62. div.shim, #input textarea, #buffer div.scroll div.messageRow, #buffer div.scroll span.author
  63. {
  64. font: 12px/1.25 "Lucida Grande","Helvetica Neue","Arial",sans-serif ! important;
  65. }
  66.  
  67. #buffer div.scroll div.messageRow.type_groupedJoinPart, #buffer div.scroll div.messageRow.type_quit
  68. {
  69. line-height:2.5em ! important;
  70. font: 9px/1.25 "Lucida Grande","Helvetica Neue","Arial",sans-serif ! important;
  71. }
  72.  
  73. #buffer div.scroll span.author a, #buffer div.scroll div.me a.user
  74. {
  75. color:#ff9900 ! important;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement