dashboard.css 913 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #header {
  2. background: transparent !important;
  3. --color-header: rgba(24, 24, 24, 1);
  4. }
  5. #body-user.dashboard--dark #header {
  6. --color-header: rgba(255, 255, 255, 1);
  7. }
  8. #header:before {
  9. content: " ";
  10. display: block;
  11. position: absolute;
  12. background-image: linear-gradient(180deg, var(--color-header) 0%, transparent 100%);
  13. width: 100%;
  14. height: 70px;
  15. top: 0;
  16. margin-top: -70px;
  17. transition: margin-top var(--animation-slow);
  18. }
  19. #body-user.dashboard--scrolled #header:before {
  20. margin-top: 0;
  21. }
  22. #body-user.theme--highcontrast #header {
  23. background-color: var(--color-header) !important;
  24. }
  25. #body-user.theme--highcontrast #header:before {
  26. display: none;
  27. }
  28. #content {
  29. padding-top: 0 !important;
  30. }
  31. #appmenu li a.active::before,
  32. #appmenu li:hover a::before,
  33. #appmenu li:hover a.active::before,
  34. #appmenu li a:focus::before {
  35. display: none !important;
  36. }
  37. /*# sourceMappingURL=dashboard.css.map */