Advertisement
Guest User

userChrome.css - Thunderbird - xUbuntu

a guest
Jul 25th, 2014
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2. /* fix toolbar colors */
  3. .chromeclass-toolbar{
  4. -moz-appearance:toolbar!important;
  5. }
  6. .tabmail-tabs{
  7. -moz-appearance:statusbar!important;
  8. background-color:-moz-dialog!important;
  9. }
  10. .chromeclass-toolbar .toolbarbutton-text/*,tab .tab-text*/{ /* commented code out i used in thunderbird 10 */
  11. color:ButtonText!important;
  12. }
  13. .chromeclass-toolbar toolbaritem > label, toolbar:not(.inline-toolbar) toolbarbutton:not(:-moz-lwtheme){
  14. color:WindowText!important;
  15. }
  16. .chromeclass-toolbar toolbarbutton[disabled="true"] .toolbarbutton-text{
  17. color:GrayText!important;
  18. }
  19. /* fix panel dividers */
  20. #contactsView separator.thin{
  21. max-height:0px!important;
  22. }
  23. #folderpane_splitter,#threadpane-splitter,#calsidebar_splitter,#today-splitter,#sidebar-splitter,#dirTree-splitter {
  24. -moz-appearance: splitter!important;
  25. margin:0px!important;
  26. }
  27. #addressbookWindow #results-splitter, #msgcomposeWindow #compose-toolbar-sizer{
  28. margin: 0px!important;
  29. border-bottom:none!important;
  30. -moz-appearance: splitter!important;
  31. }
  32.  
  33. #folderTree,#contactsView{
  34. border-right: 1px solid ThreeDShadow!important;
  35. }
  36. #agenda-panel{
  37. border-left: 1px solid ThreeDShadow!important;
  38. border-bottom: 1px solid ThreeDShadow!important;
  39. }
  40. #threadTree,#quick-filter-bar,#messagepanebox{
  41. border-right: 1px solid ThreeDShadow!important;
  42. border-left: 1px solid ThreeDShadow!important;
  43. }
  44. #mailContent:not([layout="vertical"]) #messagepanebox,#displayDeck{
  45. border-top: 1px solid ThreeDShadow!important;
  46. }
  47. #mail-toolbox{
  48. border-bottom: none!important;
  49. }
  50.  
  51. #addressbookWindow #dirTree{
  52. border-right: 1px solid ThreeDShadow!important;
  53. }
  54. #addressbookWindow #CardViewOuterBox{
  55. border-top: 1px solid ThreeDShadow!important;
  56. border-left: 1px solid ThreeDShadow!important;
  57. }
  58. #addressbookWindow #abResultsTree{
  59. border-bottom: 1px solid ThreeDShadow!important;
  60. border-left: 1px solid ThreeDShadow!important;
  61. }
  62.  
  63. #msgcomposeWindow #sidebar-box{
  64. border-right: 1px solid ThreeDShadow!important;
  65. border-bottom: 1px solid ThreeDShadow!important;
  66. }
  67. #msgcomposeWindow #appcontent, #today-pane-panel > sidebarheader, #todo-tab-panel{
  68. border-left: 1px solid ThreeDShadow!important;
  69. }
  70. #msgcomposeWindow #MsgHeadersToolbar{
  71. -moz-appearance: none!important;
  72. border-bottom: 1px solid ThreeDShadow!important;
  73. border-left: 1px solid ThreeDShadow!important;
  74. }
  75. /* Lock open quick filter, why would I ever want to hide something so important? */
  76.  
  77. #quick-filter-bar[collapsed="true"]{
  78. visibility: visible;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement