Advertisement
Guest User

Untitled

a guest
Aug 28th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. /* addon manager only */
  2. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  3.  
  4. /*********** left contents ****************/
  5.  
  6. /* left categories list */
  7. #categories {
  8. width: 160px !important;
  9. font-size : 10px !important;
  10. }
  11.  
  12. /* categories */
  13. .category{
  14. padding-top: 0px !important;
  15. height: 35px !important;
  16. }
  17.  
  18. /* collections find */
  19. #retirement-box{height: 60px !important;}
  20.  
  21.  
  22. /* hide categories */
  23. .category[disabled] {display:none !important;}
  24.  
  25. /* icon */
  26. .category-icon{
  27. width: 25px !important;
  28. height: 25px !important;
  29. }
  30.  
  31.  
  32. /*********** right contents ****************/
  33.  
  34. /* 縞々模様 */
  35. #addon-list > richlistitem:nth-child(even){
  36. background:AliceBlue;
  37. }
  38.  
  39. /* 全体調整 */
  40. #list-view .addon.addon-view * {
  41. font-size: 100% !important;
  42. margin-top: 0 !important;
  43. margin-bottom: 0 !important;
  44. }
  45.  
  46. /* 隙間調整(padding) */
  47. #list-view > #addon-list .addon.addon-view {
  48. padding: 0px !important;
  49. }
  50.  
  51. /* 水平に並べて表示(horizontal) */
  52. .content-inner-container{-moz-box-orient:horizontal;}
  53.  
  54. /* icon image */
  55. .icon-container ,
  56. .icon-container > .icon {
  57. width: 16px !important;
  58. height: 16px !important;
  59. }
  60.  
  61. /* addon name */
  62. .basicinfo-container{
  63. width: 350px !important;
  64. -moz-box-align: center !important;
  65. }
  66. .name-container{font-size:100% !important}
  67.  
  68. /* border off */
  69. #search-list *,
  70. #addon-list *,
  71. #updates-list{
  72. border:none !important;
  73. }
  74.  
  75. /* border bottom line */
  76. #addon-list .addon.addon-view {
  77. border-bottom:1px rgb(230,227,218) solid !important;
  78. }
  79.  
  80. /* option botton border */
  81. #search-list .addon-control,
  82. #addon-list .addon-control,
  83. #updates-list .addon-control {
  84. border: 1px solid #888 !important;
  85. }
  86.  
  87. /* 詳細ボタン非表示 */
  88. .details.button-link{display:none !important;}
  89.  
  90. /* テーマのスペース調整(theme)
  91. .description{display:block !important;}
  92. */
  93. /*spacer off
  94. .description-container > spacer{display:none !important;}
  95. */
  96.  
  97. /*********** optins button ****************/
  98.  
  99. /* options */
  100. #list-view > #addon-list .status-control-wrapper{
  101. width:250px !important;
  102. }
  103. .control-container>button{margin:1px !important;}
  104. .addon-control{
  105. padding:0px !important;
  106. }
  107.  
  108. /* options buttons
  109. .addon-control.preferences{min-width: 3.5em !important;}
  110. .addon-control.enable{min-width: 3em !important;}
  111. .addon-control.disable{min-width: 3em !important;}
  112. .addon-control.remove{min-width: 2em !important;}
  113. .addon-control{min-width: 3em !important;}
  114. .addon-control.button_scriptish_userscript_edit{min-width: 3em !important;}
  115. .addon-control.button_scriptish_userscript_show{min-width: 3em !important;}
  116. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement