You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. /* enable in about:config
  2. toolkit.legacyUserProfileCustomizations.stylesheets
  3. */
  4. /* colors based on plastic color scheme */
  5. @import "userColors.css";
  6. :root {
  7. scrollbar-color: var(--color-acc1) var(--color-bg);
  8. --lwt-toolbar-field-background-color: red !important; /*normally*/
  9. --lwt-toolbar-field-focus: red !important; /*focussed*/
  10. }
  11. /*@-moz-document url(about:newtab), url(about:blank) url(about:home) {
  12. html:not(#ublock0-epicker), html:not(#ublock0-epicker) body, #newtab-customize-overlay {
  13. background: var(--color-bg) !important;
  14. }
  15. }
  16. */
  17. @-moz-document url-prefix(about:blank) {
  18. html > body:empty {
  19. background-color: var(--color-bg) !important;
  20. }
  21. }
  22. @moz-document url(about:blank) {
  23. html > body:empty {
  24. background-color: var(--color-bg) !important;
  25. }
  26. }
  27. input, textarea {
  28. color: var(--color-fg);
  29. background-color: var(--color-bg);
  30. }
  31. /*
  32. input:focus[type=submit] {
  33. background-color: var(--color-acc1) !important;
  34. }
  35. */
  36. /*select is for selected item in dropdown menus*/
  37. input[type=text], select {
  38. background-color: var(--color-bg) !important;
  39. color: var(--color-fg) !important;
  40. }
  41. /*currently for filter boxes in navidrome,
  42. * maybe conflicts with other pages*/
  43. label {
  44. color: var(--color-fg) !important;
  45. opacity: 0.5;
  46. }
  47. /*not working*/
  48. input[type=button], input[type=submit], input[type=reset] {
  49. color: var(--color-acc2) !important;
  50. backgroun-color: var(--color-acc1) !important;
  51. }