_graph.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. .graph {
  2. margin-top: $grid-gutter-width;
  3. min-height: calc(100% - 155px);
  4. .p-inputtext {
  5. border-color: $primary;
  6. color: #0B1226;
  7. background: $white;
  8. }
  9. .input-group {
  10. margin: 0;
  11. width: auto;
  12. @include media-breakpoint-down(sm) {
  13. justify-content: center;
  14. width: 100%;
  15. }
  16. }
  17. .input-group-text {
  18. border: 1px solid $primary;
  19. background: $primary;
  20. i {
  21. color: #F2F2F2;
  22. }
  23. }
  24. .p-calendar .p-datepicker {
  25. background: $primary;
  26. .p-datepicker-header {
  27. background: $primary;
  28. }
  29. }
  30. .p-listbox {
  31. margin: 0 $grid-gutter-width;
  32. border-color: $primary;
  33. background: $white;
  34. @include media-breakpoint-down(md) {
  35. margin-top: 10px;
  36. }
  37. .p-listbox-item {
  38. color: #0B1226;
  39. &:not(.p-highlight):not(.p-disabled) {
  40. @include hover-focus() {
  41. color: $white;
  42. background: $primary;
  43. }
  44. }
  45. &.p-highlight {
  46. color: $white;
  47. background: $primary;
  48. }
  49. }
  50. }
  51. .p-field-checkbox {
  52. display: flex;
  53. align-items: center;
  54. justify-content: space-between;
  55. label {
  56. margin: 5px 0;
  57. }
  58. }
  59. .p-checkbox{
  60. margin: 0 7px;
  61. }
  62. .p-checkbox-box {
  63. background: #F2F2F2;
  64. }
  65. }
  66. .graph-information {
  67. margin-bottom: $grid-gutter-width;
  68. border: 1px solid $primary;
  69. background: #F2F2F2;
  70. .p-button-primary {
  71. margin: 0 10px;
  72. }
  73. }
  74. .graph-desc {
  75. width: 100%;
  76. padding: 10px;
  77. font-size: 18px;
  78. @include media-breakpoint-down(xs) {
  79. font-size: 16px;
  80. }
  81. }
  82. .graph-attr-heading {
  83. font-weight: $font-weight-bold;
  84. text-transform: uppercase;
  85. }
  86. .graph-range-dates {
  87. display: flex;
  88. align-items: center;
  89. justify-content: flex-start;
  90. flex-wrap: wrap;
  91. margin-top: $grid-gutter-width;
  92. margin-bottom: $grid-gutter-width;
  93. padding: 10px $grid-gutter-width;
  94. @include media-breakpoint-down(md) {
  95. justify-content: center;
  96. padding-left: 10px;
  97. padding-right: 10px;
  98. }
  99. }
  100. .graph-range-dates-separator {
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. height: 42px;
  105. @include media-breakpoint-down(sm) {
  106. width: 100%;
  107. }
  108. div {
  109. width: 15px;
  110. height: 2px;
  111. margin: 0 10px;
  112. background: #0B1226;
  113. }
  114. }
  115. .graph-group-heading {
  116. font-weight: $font-weight-bold;
  117. line-height: 2;
  118. }
  119. .graph-view-wrapper {
  120. padding-left: math.div($grid-gutter-width, 2);
  121. padding-right: math.div($grid-gutter-width, 2);
  122. @include media-breakpoint-down(lg) {
  123. overflow-x: scroll;
  124. }
  125. }