Нема описа
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.

card-analytics.scss 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Card Analytics
  2. ******************************************************************************* */
  3. @import "../_bootstrap-extended/include";
  4. /* Report list section style */
  5. .report-list {
  6. .report-list-item {
  7. background-color: rgba(var(--#{$prefix}base-color-rgb), .06);
  8. padding-block: .75rem;
  9. padding-inline: 1rem;
  10. }
  11. .report-list-icon {
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. background-color: var(--#{$prefix}paper-bg);
  16. min-block-size: 40px;
  17. min-inline-size: 40px;
  18. @include border-radius($border-radius);
  19. }
  20. }
  21. /* Vehicles overview progress labels */
  22. .vehicles-progress-labels {
  23. .vehicles-progress-label {
  24. position: relative;
  25. padding-block-end: 15px;
  26. &::after {
  27. position: absolute;
  28. display: inline-block;
  29. background-color: var(--#{$prefix}border-color);
  30. block-size: 10px;
  31. content: "";
  32. inline-size: 2px;
  33. inset-block-end: 0;
  34. inset-inline-start: 0;
  35. [dir="rtl"] & {
  36. inset-inline: unset 0;
  37. }
  38. }
  39. }
  40. }
  41. /* Vehicles overview progress */
  42. .vehicles-overview-progress {
  43. --#{$prefix}snackbar-bg: #22303e;
  44. .bg-gray-900 {
  45. color: var(--#{$prefix}white);
  46. }
  47. .snackbar {
  48. background-color: var(--#{$prefix}snackbar-bg);
  49. }
  50. }
  51. /* Shipment statistics chart legend */
  52. #shipmentStatisticsChart,
  53. #carrierPerformance {
  54. .apexcharts-legend-series {
  55. @include border-radius($border-radius);
  56. border: $border-width solid var(--#{$prefix}border-color);
  57. block-size: 83%;
  58. padding-block: 4px;
  59. padding-inline: 12px;
  60. padding-inline-start: 17px;
  61. }
  62. }
  63. /* Dark theme */
  64. @if $enable-dark-mode {
  65. @include color-mode(dark) {
  66. .vehicles-overview-progress {
  67. --#{$prefix}snackbar-bg: #e6e6f1;
  68. }
  69. }
  70. }