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