Advertisement
Guest User

Untitled

a guest
Nov 30th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. /* Disable Megabar Animation */
  2.  
  3. #urlbar > #urlbar-background {
  4. margin: 0px !important;
  5. animation-name: none !important;
  6. border: none !important;
  7. animation: none !important;
  8. border-radius: 0 !important;
  9. background-image: url("images/comboboxbutton.png") !important;
  10. background-repeat: no-repeat !important;
  11. padding: 0px !important;
  12. background-position: right center !important;
  13. box-shadow: none !important;
  14. background-color: @base_color !important;
  15. border: solid !important;
  16. border-radius: 0 !important;
  17. border-width: 2px 2px 2px 2px !important;
  18. border-image: url("images/combobox.png") !important;
  19. border-image-slice: 2 2 2 2 !important;
  20. min-height: 25px !important;
  21. height: 25px !important;
  22. }
  23.  
  24. #search-container {
  25. margin-top: -2px !important;
  26. }
  27.  
  28. #urlbar-container {
  29. margin-top: 2px !important;
  30. }
  31.  
  32. #searchbar {
  33. margin: 0px !important;
  34. animation-name: none !important;
  35. border: none !important;
  36. animation: none !important;
  37. border-radius: 0 !important;
  38. padding: 0px !important;
  39. box-shadow: none !important;
  40. background-color: @base_color !important;
  41. border: solid !important;
  42. border-radius: 0 !important;
  43. border-width: 2px 2px 2px 2px !important;
  44. border-image: url("images/combobox.png") !important;
  45. border-image-slice: 2 2 2 2 !important;
  46. min-height: 25px !important;
  47. height: 25px !important;
  48. }
  49.  
  50. .searchbar-search-button {
  51. background: linear-gradient(180deg, rgb(221, 227, 235) 0%, rgb(177, 189, 201) 100%);
  52. border-right: 1px solid #5d616e;
  53. margin-right: 5px;
  54. margin-left: -2px;
  55. }
  56.  
  57. #navigator-toolbox {
  58. background-color: #b3bfca !important;
  59. }
  60.  
  61. #page-action-buttons {
  62. margin-right: 17px !important;
  63. }
  64.  
  65. #urlbar,
  66. #urlbar[breakout][breakout-extend][breakout-extend-animate] {
  67. margin-top: -3px !important;
  68. padding-left: 3px !important; }
  69.  
  70. #main-window[uidensity="compact"] #urlbar,
  71. #main-window[uidensity="compact"] #urlbar[breakout][breakout-extend][breakout-extend-animate] {
  72. margin-top: -5px !important;
  73. padding-left: 3px !important; }
  74.  
  75. #urlbar[breakout-extend] {
  76. top:calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
  77. left:calc((var(--urlbar-toolbar-width) - var(--urlbar-width)) / 2) !important;
  78. width:100% !important }
  79.  
  80. #urlbar[breakout-extend] #urlbar-input-container {
  81. height:calc(var(--tab-min-height) - 3px) !important;
  82. padding:0px!important }
  83.  
  84. #main-window:not([uidensity="compact"]) #urlbar #urlbar-input-container,
  85. #main-window:not([uidensity="compact"]) #urlbar[breakout-extend] #urlbar-input-container {
  86. margin-top: -2px !important;
  87. }
  88.  
  89. /* Reduce row paddings to make them more compact */
  90. .urlbarView-row {
  91. padding: 0px !important;
  92. }
  93.  
  94. .urlbarView{
  95. margin-left:-2px!important;
  96. width:100%!important;
  97. background-color: #ffffff !important;
  98. border: 1px solid #000 !important;
  99. border-top: none !important;
  100. }
  101.  
  102. /* identity box */
  103. #identity-box {
  104. padding-inline-start: 4px !important;
  105. }
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement