Advertisement
Guest User

Untitled

a guest
Oct 21st, 2022
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. @charset "utf-8";
  2.  
  3. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
  4. /* Bookmarks Toolbar: */
  5. #PersonalToolbar {
  6. /*
  7. font-size: 10pt !important;
  8. */
  9. margin-bottom: 0px !important;
  10. }
  11. #PersonalToolbar menu,
  12. #PersonalToolbar menuitem {
  13. /*
  14. font-size: 10pt !important;
  15. */
  16. min-height: 22px !important;
  17. max-height: 22px !important;
  18. margin-top: 0px !important;
  19. margin-bottom: 0px !important;
  20. padding-top: 0px !important;
  21. }
  22.  
  23. /* タブの高さ調整 */
  24. #TabsToolbar { --tab-min-height: 24px !important; }
  25. #TabsToolbar { --tab-max-height: 24px !important; }
  26.  
  27. /* タイトルバーボタン[-□×]の外枠を小さくして透明化 */
  28. #TabsToolbar > .titlebar-buttonbox-container { background-color: hsla(0, 0%, 50%, 0.5); position: fixed; right:0; z-index: 2147483647 !important; opacity: 0; }
  29. #TabsToolbar > .titlebar-buttonbox-container .titlebar-button { height: 6px !important; width: 12px !important; opacity: 0; }
  30. /* 右上をマウスオーバーでデフォルトのサイズに戻して透明化を解除 */
  31. #TabsToolbar > .titlebar-buttonbox-container:hover { opacity: 1; }
  32. #TabsToolbar > .titlebar-buttonbox-container:hover .titlebar-button { height: var(--tab-min-height) !important; opacity: 1; width: 46px !important; }
  33.  
  34. /* タブの横幅を固定 */
  35. .tabbrowser-tab[fadein]:not([pinned]) {
  36. min-width: 100px !important; /* 最小値 デフォルト 76px */
  37. max-width: 100px !important; /* 最大値 デフォルト 225px */
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement