Advertisement
Corvust

UserChrome.css

Apr 5th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.96 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /* ------------------------------------------------- */
  4.  
  5. /* Adjust Colors */
  6. .tab-background:not([selected=true]),
  7. .tab-background[selected="true"],
  8. /* #titlebar-buttonbox, */
  9. #TabsToolbar,
  10. /* #PersonalToolbar, */
  11. #urlbar,
  12. #nav-bar {
  13.   background: #31363b !important;
  14. }
  15.  
  16.  
  17. /* ------------------------------------------------- */
  18.  
  19. /* Removes min/max/close buttons */
  20.  
  21.  
  22. /* ------------------------------------------------- */
  23.  
  24. /* Rounded url bar */
  25. #urlbar, .searchbar-textbox{
  26.     border-radius: 2em !important;
  27. }
  28.  
  29. /* ------------------------------------------------- */
  30.  
  31. /* Fix new tab flash */
  32. .browserContainer { background-color: #202124 !important; }
  33.  
  34. /* ------------------------------------------------- */
  35.  
  36. /* Hide Back and Forward buttons */
  37. #back-button, #forward-button {
  38.   display: none !important;
  39. }
  40.  
  41. /* ------------------------------------------------- */
  42.  
  43. /* Hides the url focus color */
  44. /* Hide urlbar boarder */
  45. #urlbar {
  46.   border: none !important;
  47.   border-color: transparent !important;
  48.   border-width: 0px !important;
  49. }
  50.  
  51. /* Clean Up */
  52. .urlbar-icon,
  53. .tab-close-button.tab-close-button,
  54. #page-action-buttons,
  55. #identity-box {
  56.   display: none;
  57. }
  58. #urlbar .urlbar-input-box {
  59.     text-align: center;
  60. }
  61. .urlbar-input-box > .urlbar-input::placeholder {
  62.   opacity: 0 !important;
  63. }
  64.  
  65. /* Hides the url go button */
  66. .urlbar-go-button {
  67.   display: none !important;
  68. }
  69.  
  70. /* ------------------------------------------------- */
  71.  
  72. /* Remove border under navbar */
  73. #navigator-toolbox::after {
  74.   border-bottom: 0px !important;
  75.   }
  76.  
  77. /* ------------------------------------------------- */
  78.  
  79. /* Remove Tab Borders */
  80. .tabbrowser-tab::after, .tabbrowser-tab::before {
  81.    border-left: none !important;
  82. }
  83. :root {
  84.   --tabs-border: transparent !important;
  85. }
  86.  
  87. /* Hide blue stripe on active tab */
  88. .tab-line[selected="true"] {
  89.   opacity: 0 !important;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement