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