1. /* ======================================================== */
  2. /* MAKE MAIN FIREFOX APP BUTTON DEFAULT COLOUR */
  3. /* ======================================================== */
  4. #appmenu-button {
  5. padding: 0 15px 1px 15px !important;
  6. }
  7. #main-window:not([privatebrowsingmode=temporary]) #appmenu-button {
  8. background-image: -moz-linear-gradient(rgb(247,182,82), rgb(215,98,10) 95%) !important;
  9. box-shadow: 0 1px 0 rgba(255,255,255,.25) inset,
  10. 0 0 0 1px rgba(255,255,255,.25) inset !important;
  11. }
  12. #main-window:not([privatebrowsingmode=temporary]) #appmenu-button:hover:not(:active):not([open]) {
  13. background-image: -moz-radial-gradient(center bottom, farthest-side, rgba(252,240,89,.5) 10%, rgba(252,240,89,0) 70%),
  14. -moz-radial-gradient(center bottom, farthest-side, rgb(236,133,0), rgba(255,229,172,0)),
  15. -moz-linear-gradient(rgb(246,170,69), rgb(209,74,0) 95%) !important;
  16. box-shadow: 0 1px 0 rgba(255,255,255,.1) inset,
  17. 0 0 1.5px 1px rgba(250,234,169,.7) inset,
  18. 0 -1px 0 rgba(250,234,169,.5) inset !important;
  19. }
  20. #main-window:not([privatebrowsingmode=temporary]) #appmenu-button:hover:active,
  21. #main-window:not([privatebrowsingmode=temporary]) #appmenu-button[open] {
  22. background-image: -moz-linear-gradient(rgb(246,170,69), rgb(209,74,0) 95%) !important;
  23. box-shadow: 0 2px 3px rgba(0,0,0,.4) inset,
  24. 0 1px 1px rgba(0,0,0,.2) inset !important;
  25. }
  26. /* ======================================================== */