Advertisement
csako

Firefox 57 UserChrome.css modifications

Dec 5th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.74 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3. toolbarbutton#alltabs-button {
  4.     -moz-binding: url("userChrome.xml#js");
  5. }
  6.  
  7. #bookmarks-view {
  8. background: #1c2126 !important;
  9. color: #b6e6f9 !important;
  10. }
  11. #sidebar-search-container {
  12. background: #1c2126 !important;
  13. color: #b6e6f9 !important;
  14. }
  15.  
  16. #alertBox[hasBodyText] > #alertTextBox,
  17. #alertBox[hasOrigin] > #alertTitleBox {
  18. background: #1c2126 !important;
  19. color: #b6e6f9 !important;
  20. }
  21.  
  22. #alertBox {
  23.   color: #b6e6f9 !important;
  24.   background: #1c2126 !important;
  25. }
  26. #alertNotification .alertTitle {
  27. background: #1c2126 !important;
  28. color: #b6e6f9 !important;
  29. }
  30.  
  31. .sidebar-placesTreechildren::-moz-tree-cell-text(selected) {
  32. color: #b6e6f9 !important;
  33. }
  34.  
  35. .sidebar-placesTreechildren::-moz-tree-row(selected) {
  36. background: #1a4666 !important;
  37. }
  38.  
  39. .sidebar-placesTreechildren::-moz-tree-cell-text(selected, focus) {
  40. color: #b6e6f9 !important;
  41. }
  42.  
  43. .sidebar-placesTreechildren::-moz-tree-row(selected, focus) {
  44. background: #1a4666 !important;
  45. }
  46.  
  47. .sidebar-placesTreechildren::-moz-tree-cell-text(hover) {
  48. text-decoration: none !important; }
  49.  
  50. .sidebar-placesTreechildren::-moz-tree-row(hover) {
  51. background: #1a4666 !important;
  52. }
  53. #PopupAutoCompleteRichResult richlistitem:first-of-type[actiontype="searchengine"],
  54. #PopupAutoCompleteRichResult richlistitem[actiontype="visiturl"]{
  55. display:none !important;
  56. }
  57. .tabbrowser-tab[pinned] {
  58.   width: 82px;
  59. }
  60.  
  61. .tabbrowser-tab[fadein]:not([pinned]) { min-width: 40px !important; max-width: 190px !important; }
  62.  
  63. #context-reload { -moz-box-ordinal-group: 0 !important; }
  64. /*#context-back,
  65. #context-forward { display:none !important; }
  66. */
  67. .tab-close-button:not([pinned="true"]) { display: -moz-box !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement