You are here

dashboard.css in Dashboards with Layout Builder 8

Same filename and directory in other branches
  1. 2.0.x css/dashboard.css
.toolbar-bar .toolbar-item.toolbar-menu-administration-dashboard:before {
  background-image: url("../images/dashboard.svg");
}

@keyframes pulse-throbber {
  0% {
    opacity: 1;
    transform: scaley(1);
  }
  100% {
    opacity: 0.2;
    transform: scaley(0.5);
  }
}

.dashboard-layout-builder-form span[data-big-pipe-placeholder-id],
.dashboards-container span[data-big-pipe-placeholder-id] {
  position: relative;
  display: block;
  margin: 20px auto;
  width: 6px;
  height: 30px;
  background: rebeccaPurple;
  animation: pulse-throbber 0.2s infinite;
  animation-delay: 0.0666666667s;
  animation-direction: alternate;
}

.dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:before,
.dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:after,
.dashboards-container span[data-big-pipe-placeholder-id]:before,
.dashboards-container span[data-big-pipe-placeholder-id]:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rebeccaPurple;
  top: 0;
  animation: pulse-throbber 0.2s infinite;
  animation-direction: alternate;
}

.dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:before,
.dashboards-container span[data-big-pipe-placeholder-id]:before {
  left: -12px;
}

.dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:after,
.dashboards-container span[data-big-pipe-placeholder-id]:after {
  left: 12px;
  animation-delay: 0.1333333333s;
}

File

css/dashboard.css
View source
  1. .toolbar-bar .toolbar-item.toolbar-menu-administration-dashboard:before {
  2. background-image: url("../images/dashboard.svg");
  3. }
  4. @keyframes pulse-throbber {
  5. 0% {
  6. opacity: 1;
  7. transform: scaley(1);
  8. }
  9. 100% {
  10. opacity: 0.2;
  11. transform: scaley(0.5);
  12. }
  13. }
  14. .dashboard-layout-builder-form span[data-big-pipe-placeholder-id],
  15. .dashboards-container span[data-big-pipe-placeholder-id] {
  16. position: relative;
  17. display: block;
  18. margin: 20px auto;
  19. width: 6px;
  20. height: 30px;
  21. background: rebeccaPurple;
  22. animation: pulse-throbber 0.2s infinite;
  23. animation-delay: 0.0666666667s;
  24. animation-direction: alternate;
  25. }
  26. .dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:before,
  27. .dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:after,
  28. .dashboards-container span[data-big-pipe-placeholder-id]:before,
  29. .dashboards-container span[data-big-pipe-placeholder-id]:after {
  30. content: "";
  31. position: absolute;
  32. display: block;
  33. width: 100%;
  34. height: 100%;
  35. background: rebeccaPurple;
  36. top: 0;
  37. animation: pulse-throbber 0.2s infinite;
  38. animation-direction: alternate;
  39. }
  40. .dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:before,
  41. .dashboards-container span[data-big-pipe-placeholder-id]:before {
  42. left: -12px;
  43. }
  44. .dashboard-layout-builder-form span[data-big-pipe-placeholder-id]:after,
  45. .dashboards-container span[data-big-pipe-placeholder-id]:after {
  46. left: 12px;
  47. animation-delay: 0.1333333333s;
  48. }