Advertisement
Guest User

Untitled

a guest
Feb 26th, 2019
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.25 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /* AUTOHIDE */
  4.  
  5. #nav-bar {
  6.     transition-delay: 4s;
  7.     /* navbar */
  8. }
  9.  
  10. #main-window:not([inFullscreen]):not([inDOMFullscreen]):not([customize-entered]):not([chromehidden~="toolbar"]) #navigator-toolbox  {
  11.     position: relative !important;
  12.     z-index: 2 !important;
  13.     }
  14. #main-window:not([inFullscreen]):not([inDOMFullscreen]):not([customize-entered]):not([chromehidden~="toolbar"]) #content-deck {
  15. /*          z-index: -1 !important; */
  16.     position: relative !important;
  17.     margin-top: -96px !important; /* -72 bez paska */
  18.     }
  19. #main-window:not([inFullscreen]):not([inDOMFullscreen]):not([customize-entered]):not([chromehidden~="toolbar"])/*:hover */
  20. #navigator-toolbox:not(:focus-within) ~
  21. #content-deck:hover {
  22.     z-index: 4 !important;
  23.         }
  24. /* AUTOHIDE DRAGFIX */
  25. #toolbar-menubar
  26. , #TabsToolbar
  27. , #titlebar-placeholder
  28. , #nav-bar
  29. , #PersonalToolbar
  30. { -moz-window-dragging:  no-drag !important; }
  31. #main-window:not([inFullscreen]):not([inDOMFullscreen]):not([customize-entered]):not([chromehidden~="toolbar"]):not(:hover) toolbar:not([nowindowdrag="true"]):not([customizing="true"]):not(:hover)
  32. { -moz-window-dragging: drag !important;}
  33. #main-window:not([inFullscreen]):not([inDOMFullscreen]):not([customize-entered]):not([chromehidden~="toolbar"]):hover toolbar:not([nowindowdrag="true"]):not([customizing="true"]):hover
  34. { -moz-window-dragging: drag !important;}
  35.  
  36.  
  37. .titlebar-placeholder[type="pre-tabs"] { display: none !important;
  38. /*  -moz-window-dragging: drag !important;
  39. -moz-user-focus:  unset !important;
  40. -moz-user-select:   unset !important;
  41. */
  42. }
  43. .titlebar-placeholder[type="post-tabs"] {display: none !important;
  44. }
  45.  
  46. /*      #navigator-toolbox:hover   
  47. { -moz-window-dragging:  drag !important; }
  48. */
  49. /***AUTOHIDE CAPTION BUTTON FIX***/
  50. .titlebar-button {
  51. border: none;
  52. margin: 0 !important;
  53. padding: 0px 17px !important;
  54. }
  55. #titlebar-buttonbox {
  56. position: relative !important; z-index: 3 !important;
  57. }  
  58. #titlebar-buttonbox:hover {
  59. background-color: black !important;
  60. }
  61. #titlebar-buttonbox {
  62. margin: 0px 0px 0px 0px !important;
  63. padding: 0px 0px !important;
  64. /* max-height: 20px !important; */
  65. /* max-height: var(tab-min-height) !important; */
  66. }
  67. #titlebar-buttonbox:not(:hover) #titlebar-min {
  68. visibility: collapse !important;
  69. }
  70. #titlebar-buttonbox #titlebar-max{
  71. visibility: collapse !important;
  72. }
  73. #PanelUI-menu-button {
  74. padding-inline-start: 0px !important;
  75. padding-inline-end: 2px !important;
  76. }
  77. #PanelUI-button {
  78. border: none !important;
  79. }
  80. /*** FIX CAPTION WIN10***/
  81. #main-window[sizemode="normal"] > #titlebar { -moz-appearance: none !important; }
  82.  
  83.  
  84. /***NAV TOOLBOX HOVER SPACE***/
  85.  
  86. #navigator-toolbox {
  87. box-shadow: 0 0px 8px 0 rgba(12, 12, 13, 0.4), 0 0px 20px 0 rgba(0, 0, 0, 0.19) !important;
  88. /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;} */
  89. }
  90.  
  91. #navigator-toolbox:after    {
  92. content: "";
  93. position: absolute;
  94. width: 100%;
  95. height: 100%;
  96. right: 0px;
  97. top: 0px;
  98. background: transparent;
  99. /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;} */
  100. z-index: -1;
  101. border-bottom: 8px solid transparent !important;
  102. }
  103.  
  104.  
  105. /* //////////////////////////////////////////////////////////*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement