Guest User

Untitled

a guest
Feb 6th, 2022
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.62 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. #navigator-toolbox-background{
  4.     margin-left: 40px;
  5. }
  6. #browser{
  7.     margin-left: 40px;
  8. }
  9.  
  10. #tabbrowser-arrowscrollbox{
  11.     position: fixed;
  12.     display: block;
  13.     height: calc(100vh - 48px);
  14.     width: 100vw;
  15.     left: 0;
  16.     top: 48px;
  17.     transform-origin: 50vw 50vw;
  18.     z-index: 1;
  19.     pointer-events: none;
  20. }
  21. #tabbrowser-arrowscrollbox:before{
  22.     content: "";
  23.     position: absolute;
  24.     top: 0;
  25.     left: 0;
  26.     bottom: 0;
  27.     width: 39px;
  28.     border-top: 1px solid red;
  29.     border-right: 1px solid red;
  30. }
  31. [part=scrollbox]{
  32.     overflow: auto;
  33.     display: block;
  34.     height: calc(100vh - 48px);
  35.     width: 100vw;
  36.     scrollbar-width: none;
  37. }
  38. .tabbrowser-tab{
  39.     min-width: 40px !important;
  40.     width: 40px !important;
  41.     height: 40px !important;
  42.     min-height: unset !important;
  43.     margin: 0;
  44.     padding: 0;
  45.     padding-inline: 0 !important;
  46.     overflow: visible;
  47.     -moz-box-align: end !important;
  48.     display: block;
  49.     pointer-events: all;
  50. }
  51. #tabs-newtab-button{
  52.     pointer-events: all;
  53. }
  54. #scrollbutton-up, #scrollbutton-down{
  55.     display: none;
  56. }
  57.  
  58. .tab-stack{
  59.     width: auto;
  60.     height: 40px;
  61. }
  62. .tab-background{
  63.     margin: 0 !important;
  64.     padding: 0 !important;
  65.     border-radius: 0 !important;
  66.     box-shadow: none !important;
  67. }
  68. .tab-background[selected="true"]{
  69.     border: 1px solid red !important;
  70.     border-right: 0 solid transparent !important;
  71. }
  72. .tab-content{
  73.     height: 40px;
  74.     width: auto;
  75.     padding: 0 !important;
  76.     display: block;
  77.     position: relative;
  78.     -moz-box-align: start !important;
  79.     text-overflow: no-wrap;
  80. }
  81. .tab-icon-stack{
  82.     width: 40px;
  83.     height: 40px;
  84. }
  85. .tab-icon-stack *{
  86.     width: 32px !important;
  87.     height: 32px !important;
  88.     margin: 4px !important;
  89.     padding: 0;
  90. }
  91. .tab-label-container{
  92.     height: auto !important;
  93.     display: block;
  94.     overflow: visible !important;
  95.     position: absolute;
  96.     top: 0;
  97.     left: 40px;
  98.     margin: 0 100px 0 0;
  99.     visibility: hidden;
  100. }
  101. .tab-label-container[selected="true"]{
  102.     visibility: visible;
  103.     position: fixed;
  104.     left: 50px;
  105.     top: 5px;
  106. }
  107. .tab-label{
  108.     line-height: 40px !important;
  109. }
  110. .close-icon{
  111.     display: block;
  112.     position: relative;
  113.     padding: 2px !important;
  114.     margin: 0 !important;
  115.     width: 12px !important;
  116.     height: 12px !important;
  117.     border-radius: 50% !important;
  118.     left: 24px;
  119.     bottom: 16px;
  120.     background-color: rgba(20,20,20,0.4) !important;
  121. }
  122. .close-icon:hover{
  123.     background-color:rgba(20,20,20,0.8) !important
  124. }
  125.  
  126. #PanelUI-button{
  127.     display: block;
  128.     position: fixed;
  129.     width: 40px;
  130.     height: 40px;
  131.     top: 8px;
  132.     left: 0;
  133. }
  134. #PanelUI-menu-button{
  135.     display: block;
  136.     width: 40px;
  137.     height: 40px;
  138.     margin: 0 !important;
  139.     padding: 0 !important;
  140. }
Advertisement
Add Comment
Please, Sign In to add comment