Projekt

Obecné

Profil

Stáhnout (1.59 KB) Statistiky
| Větev: | Tag: | Revize:
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-desc {
73
  padding: 10px;
74
  font-size: $h3-font-size;
75
  background: #F2F2F2;
76
}
77

    
78
.graph-attr-heading {
79
  font-weight: $font-weight-bold;
80
  text-transform: uppercase;
81
}
82

    
83
.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
}
(3-3/9)