Projekt

Obecné

Profil

Stáhnout (2.23 KB) Statistiky
| Větev: | Tag: | Revize:
1
.dashboard-unit-wrapper {
2
  width: 100%;
3
}
4

    
5
.dashboard-unit {
6
  align-items: center;
7
}
8

    
9
.dashboard-unit-heading {
10
  text-align: right;
11

    
12
  @include media-breakpoint-down(xs) {
13
    text-align: center;
14
  }
15
}
16

    
17
.dashboard {
18
  padding: $grid-gutter-width 0;
19

    
20
  h3 {
21
    margin: 0;
22
    font-weight: $font-weight-bold;
23
    white-space: nowrap;
24
    overflow: hidden;
25
    text-overflow: ellipsis;
26

    
27
    @include media-breakpoint-down(sm) {
28
      max-width: 260px;
29
      font-size: 16px;
30
    }
31

    
32
    @include media-breakpoint-down(xs) {
33
      margin-bottom: 10px;
34
    }
35
  }
36

    
37
  h4 {
38
    margin: 0;
39

    
40
    @include media-breakpoint-down(xs) {
41
      margin-bottom: 10px;
42
    }
43
  }
44

    
45
  hr {
46
    margin: 0;
47
    border: 1px solid #619CE2;
48
  }
49

    
50
  .p-accordion {
51
    .p-accordion-header {
52
      .p-accordion-header-link {
53
        padding-top: $grid-gutter-width / 2;
54
        padding-bottom: $grid-gutter-width / 2;
55
        color: #0B1226;
56
        background: #F2F2F2;
57
      }
58

    
59
      &:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link {
60
        color: #0B1226;
61
        background: #BCBCBC;
62
      }
63

    
64
      &:not(.p-disabled).p-highlight  {
65
        .p-accordion-header-link {
66
          color: #0B1226;
67
          background: #BCBCBC;
68
        }
69
      }
70

    
71
      .p-splitbutton-defaultbutton{
72
        margin-left: $grid-gutter-width  / 2;
73
      }
74
    }
75

    
76
    .p-accordion-content {
77
      padding: 0;
78
      color: #0B1226;
79
      background: #F2F2F2;
80

    
81
      .ng-star-inserted {
82
        &:nth-child(2n) .row {
83
          background: #D3D3D3;
84
        }
85

    
86
        .row {
87
          margin: 0;
88
          padding: 5px 0;
89

    
90
          @include hover-focus() {
91
            cursor: pointer;
92
            color: $white;
93
            background: #619CE2;
94
          }
95
        }
96
      }
97

    
98
      .p-button {
99
        margin: 0 5px;
100
        padding: 5px 7px;
101
      }
102
    }
103
  }
104
}
105

    
106
.dashboard-sensor-heading-wrapper {
107
  display: flex;
108
  align-items: center;
109
  height: 100%
110
}
111

    
112
.dashboard-sensor-heading {
113
  text-align: right;
114

    
115
  @include media-breakpoint-down(xs) {
116
    text-align: center;
117
  }
118
}
119

    
120
.dashboard-button-separator {
121
  display: inline-flex;
122
  align-items: center;
123
  vertical-align: bottom;
124
  margin: 0 $grid-gutter-width / 2;
125
  width: 2px;
126
  height: 100%;
127
  background: $secondary;
128
}
129

    
130
.p-dialog {
131
  background: $primary
132
}
(1-1/9)