No Description
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.

app-logistics-dashboard.scss 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* Logistics Overview
  2. ******************************************************************************* */
  3. @import "../_bootstrap-extended/include";
  4. /* Vehicles overview progress labels */
  5. .vehicles-progress-labels {
  6. .vehicles-progress-label {
  7. position: relative;
  8. padding-block-end: 15px;
  9. &::after {
  10. position: absolute;
  11. display: inline-block;
  12. background-color: var(--#{$prefix}border-color);
  13. block-size: 10px;
  14. content: "";
  15. inline-size: 2px;
  16. inset-block-end: 0;
  17. inset-inline-start: 0;
  18. }
  19. }
  20. }
  21. /* Vehicles overview progress */
  22. .vehicles-overview-progress {
  23. --#{$prefix}snackbar-bg: #22303e;
  24. .snackbar {
  25. background-color: var(--#{$prefix}snackbar-bg);
  26. }
  27. }
  28. /* Shipment statistics chart legend */
  29. #shipmentStatisticsChart,
  30. #carrierPerformance {
  31. .apexcharts-legend-series {
  32. border: 1px solid var(--#{$prefix}border-color);
  33. block-size: 83%;
  34. margin-block-end: .4375rem !important;
  35. padding-block: 4px;
  36. padding-inline: 12px;
  37. padding-inline-start: 17px;
  38. @include border-radius(var(--#{$prefix}border-radius));
  39. }
  40. }
  41. /* Dark theme */
  42. @if $enable-dark-mode {
  43. @include color-mode(dark) {
  44. .vehicles-overview-progress {
  45. --#{$prefix}snackbar-bg: #e6e6f1;
  46. }
  47. }
  48. }