Projekt

Obecné

Profil

Stáhnout (1.59 KB) Statistiky
| Větev: | Tag: | Revize:
1 a9363970 mlacha
.graph {
2 c5edcbf5 lmoucka@students.zcu.cz
  margin-top: $grid-gutter-width;
3 be033143 mlacha
4 c5edcbf5 lmoucka@students.zcu.cz
  .p-inputtext {
5
    border-color: $primary;
6
    color: #0B1226;
7
    background: $white;
8 a9363970 mlacha
  }
9 be033143 mlacha
10 c5edcbf5 lmoucka@students.zcu.cz
  .input-group {
11
    margin: 0;
12 0e5facf6 mlacha
  }
13
14 c5edcbf5 lmoucka@students.zcu.cz
  .input-group-text {
15
    border: 1px solid $primary;
16
    background: $primary;
17
18
    i {
19
      color: #F2F2F2;
20
    }
21 be033143 mlacha
  }
22
23 c5edcbf5 lmoucka@students.zcu.cz
  .p-calendar .p-datepicker {
24
    background: $primary;
25
26
    .p-datepicker-header {
27
      background: $primary;
28
    }
29 be033143 mlacha
  }
30
31 c5edcbf5 lmoucka@students.zcu.cz
  .p-listbox {
32
    margin: 0 $grid-gutter-width;
33
    border-color: $primary;
34
    background: $white;
35 0e5facf6 mlacha
36 c5edcbf5 lmoucka@students.zcu.cz
    .p-listbox-item {
37 0e5facf6 mlacha
      color: #0B1226;
38 c5edcbf5 lmoucka@students.zcu.cz
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 0e5facf6 mlacha
    }
51
  }
52
53 c5edcbf5 lmoucka@students.zcu.cz
  .p-field-checkbox {
54
    display: flex;
55
    align-items: center;
56
    justify-content: space-between;
57
58
    label {
59
      margin: 5px 0;
60
    }
61 be033143 mlacha
  }
62
63 c5edcbf5 lmoucka@students.zcu.cz
  .p-checkbox{
64
    margin: 0 7px;
65 be033143 mlacha
  }
66
67 c5edcbf5 lmoucka@students.zcu.cz
  .p-checkbox-box {
68
    background: #F2F2F2;
69 be033143 mlacha
  }
70 c5edcbf5 lmoucka@students.zcu.cz
}
71 0e5facf6 mlacha
72 c5edcbf5 lmoucka@students.zcu.cz
.graph-desc {
73
  padding: 10px;
74
  font-size: $h3-font-size;
75
  background: #F2F2F2;
76
}
77 0e5facf6 mlacha
78 c5edcbf5 lmoucka@students.zcu.cz
.graph-attr-heading {
79
  font-weight: $font-weight-bold;
80
  text-transform: uppercase;
81
}
82 0e5facf6 mlacha
83 c5edcbf5 lmoucka@students.zcu.cz
.graph-range-dates {
84
  display: flex;
85
  align-items: center;
86
  justify-content: flex-start;
87
  margin-top: $grid-gutter-width;
88
  margin-bottom: $grid-gutter-width;
89
  padding: 10px $grid-gutter-width;
90
  background: #F2F2F2;
91
}
92
93
.graph-range-dates-separator {
94
  @include size(10px,2px);
95
  margin: 0 10px;
96
  background: #0B1226;
97
}
98
99
.graph-group-heading {
100
  font-weight: $font-weight-bold;
101
  line-height: 2;
102 a9363970 mlacha
}