Projekt

Obecné

Profil

Stáhnout (1.71 KB) Statistiky
| Větev: | Tag: | Revize:
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
  }
14

    
15
  .input-group-text {
16
    border: 1px solid $primary;
17
    background: $primary;
18

    
19
    i {
20
      color: #F2F2F2;
21
    }
22
  }
23

    
24
  .p-calendar .p-datepicker {
25
    background: $primary;
26

    
27
    .p-datepicker-header {
28
      background: $primary;
29
    }
30
  }
31

    
32
  .p-listbox {
33
    margin: 0 $grid-gutter-width;
34
    border-color: $primary;
35
    background: $white;
36

    
37
    .p-listbox-item {
38
      color: #0B1226;
39

    
40
      &:not(.p-highlight):not(.p-disabled) {
41
        @include hover-focus() {
42
          color: $white;
43
          background: $primary;
44
        }
45
     }
46

    
47
      &.p-highlight {
48
        color: $white;
49
        background: $primary;
50
      }
51
    }
52
  }
53

    
54
  .p-field-checkbox {
55
    display: flex;
56
    align-items: center;
57
    justify-content: space-between;
58

    
59
    label {
60
      margin: 5px 0;
61
    }
62
  }
63

    
64
  .p-checkbox{
65
    margin: 0 7px;
66
  }
67

    
68
  .p-checkbox-box {
69
    background: #F2F2F2;
70
  }
71
}
72

    
73
.graph-information {
74
  margin-bottom: $grid-gutter-width;
75
  border: 1px solid $primary;
76
  background: #F2F2F2;
77
}
78

    
79
.graph-desc {
80
  width: 100%;
81
  padding: 10px;
82
  font-size: $h3-font-size;
83
}
84

    
85
.graph-attr-heading {
86
  font-weight: $font-weight-bold;
87
  text-transform: uppercase;
88
}
89

    
90
.graph-range-dates {
91
  display: flex;
92
  align-items: center;
93
  justify-content: flex-start;
94
  margin-top: $grid-gutter-width;
95
  margin-bottom: $grid-gutter-width;
96
  padding: 10px $grid-gutter-width;
97
}
98

    
99
.graph-range-dates-separator {
100
  @include size(10px,2px);
101
  margin: 0 10px;
102
  background: #0B1226;
103
}
104

    
105
.graph-group-heading {
106
  font-weight: $font-weight-bold;
107
  line-height: 2;
108
}
(3-3/9)