Projekt

Obecné

Profil

Stáhnout (2.46 KB) Statistiky
| Větev: | Tag: | Revize:
1 a9363970 mlacha
.graph {
2 c5edcbf5 lmoucka@students.zcu.cz
  margin-top: $grid-gutter-width;
3 7a83a003 lmoucka@students.zcu.cz
  min-height: calc(100% - 155px);
4 be033143 mlacha
5 c5edcbf5 lmoucka@students.zcu.cz
  .p-inputtext {
6
    border-color: $primary;
7
    color: #0B1226;
8
    background: $white;
9 a9363970 mlacha
  }
10 be033143 mlacha
11 c5edcbf5 lmoucka@students.zcu.cz
  .input-group {
12
    margin: 0;
13 a28c9b6e lmoucka@students.zcu.cz
    width: auto;
14
15
    @include media-breakpoint-down(sm) {
16
      justify-content: center;
17
      width: 100%;
18
    }
19 0e5facf6 mlacha
  }
20
21 c5edcbf5 lmoucka@students.zcu.cz
  .input-group-text {
22
    border: 1px solid $primary;
23
    background: $primary;
24
25
    i {
26
      color: #F2F2F2;
27
    }
28 be033143 mlacha
  }
29
30 c5edcbf5 lmoucka@students.zcu.cz
  .p-calendar .p-datepicker {
31
    background: $primary;
32
33
    .p-datepicker-header {
34
      background: $primary;
35
    }
36 be033143 mlacha
  }
37
38 c5edcbf5 lmoucka@students.zcu.cz
  .p-listbox {
39
    margin: 0 $grid-gutter-width;
40
    border-color: $primary;
41
    background: $white;
42 0e5facf6 mlacha
43 a28c9b6e lmoucka@students.zcu.cz
    @include media-breakpoint-down(md) {
44
      margin-top: 10px;
45
    }
46
47 c5edcbf5 lmoucka@students.zcu.cz
    .p-listbox-item {
48 0e5facf6 mlacha
      color: #0B1226;
49 c5edcbf5 lmoucka@students.zcu.cz
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 0e5facf6 mlacha
    }
62
  }
63
64 c5edcbf5 lmoucka@students.zcu.cz
  .p-field-checkbox {
65
    display: flex;
66
    align-items: center;
67
    justify-content: space-between;
68
69
    label {
70
      margin: 5px 0;
71
    }
72 be033143 mlacha
  }
73
74 c5edcbf5 lmoucka@students.zcu.cz
  .p-checkbox{
75
    margin: 0 7px;
76 be033143 mlacha
  }
77
78 c5edcbf5 lmoucka@students.zcu.cz
  .p-checkbox-box {
79
    background: #F2F2F2;
80 be033143 mlacha
  }
81 c5edcbf5 lmoucka@students.zcu.cz
}
82 0e5facf6 mlacha
83 91e53981 lmoucka@students.zcu.cz
.graph-information {
84
  margin-bottom: $grid-gutter-width;
85
  border: 1px solid $primary;
86
  background: #F2F2F2;
87 44c019ad lmoucka@students.zcu.cz
88
  .p-button-primary {
89
    margin: 0 10px;
90
  }
91 91e53981 lmoucka@students.zcu.cz
}
92
93 c5edcbf5 lmoucka@students.zcu.cz
.graph-desc {
94 91e53981 lmoucka@students.zcu.cz
  width: 100%;
95 c5edcbf5 lmoucka@students.zcu.cz
  padding: 10px;
96 a28c9b6e lmoucka@students.zcu.cz
  font-size: 18px;
97
98
  @include media-breakpoint-down(xs) {
99
    font-size: 16px;
100
  }
101 c5edcbf5 lmoucka@students.zcu.cz
}
102 0e5facf6 mlacha
103 c5edcbf5 lmoucka@students.zcu.cz
.graph-attr-heading {
104
  font-weight: $font-weight-bold;
105
  text-transform: uppercase;
106
}
107 0e5facf6 mlacha
108 c5edcbf5 lmoucka@students.zcu.cz
.graph-range-dates {
109
  display: flex;
110
  align-items: center;
111
  justify-content: flex-start;
112 a28c9b6e lmoucka@students.zcu.cz
  flex-wrap: wrap;
113 c5edcbf5 lmoucka@students.zcu.cz
  margin-top: $grid-gutter-width;
114
  margin-bottom: $grid-gutter-width;
115
  padding: 10px $grid-gutter-width;
116 a28c9b6e lmoucka@students.zcu.cz
117
  @include media-breakpoint-down(md) {
118
    justify-content: center;
119
    padding-left: 10px;
120
    padding-right: 10px;
121
  }
122 c5edcbf5 lmoucka@students.zcu.cz
}
123
124
.graph-range-dates-separator {
125 a28c9b6e lmoucka@students.zcu.cz
  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 c40675c9 lmoucka@students.zcu.cz
    width: 15px;
136
    height: 2px;
137 a28c9b6e lmoucka@students.zcu.cz
    margin: 0 10px;
138
    background: #0B1226;
139
  }
140 c5edcbf5 lmoucka@students.zcu.cz
}
141
142
.graph-group-heading {
143
  font-weight: $font-weight-bold;
144
  line-height: 2;
145 a9363970 mlacha
}
146 a28c9b6e lmoucka@students.zcu.cz
147
.graph-view-wrapper {
148
  padding-left: $grid-gutter-width / 2;
149
  padding-right: $grid-gutter-width / 2;
150
151
  @include media-breakpoint-down(lg) {
152
    overflow-x: scroll;
153
  }
154
}