Projekt

Obecné

Profil

Stáhnout (2.18 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
  .p-accordion {
46
    .p-accordion-header {
47
      .p-accordion-header-link {
48
        padding-top: $grid-gutter-width / 2;
49
        padding-bottom: $grid-gutter-width / 2;
50
        color: #0B1226;
51
        background: #F2F2F2;
52
      }
53

    
54
      &:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link {
55
        color: #0B1226;
56
        background: #BCBCBC;
57
      }
58

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

    
66
      .p-splitbutton-defaultbutton{
67
        margin-left: $grid-gutter-width  / 2;
68
      }
69
    }
70

    
71
    .p-accordion-content {
72
      padding: 0;
73
      color: #0B1226;
74
      background: #F2F2F2;
75

    
76
      .ng-star-inserted {
77
        &:nth-child(2n) .row {
78
          background: #D3D3D3;
79
        }
80

    
81
        .row {
82
          margin: 0;
83
          padding: 5px 0;
84

    
85
          @include hover-focus() {
86
            cursor: pointer;
87
            color: #0B1226;
88
            background: #619CE2;
89
          }
90
        }
91
      }
92

    
93
      .p-button {
94
        margin: 0 5px;
95
        padding: 5px 7px;
96
      }
97
    }
98
  }
99
}
100

    
101
.dashboard-sensor-heading-wrapper {
102
  display: flex;
103
  align-items: center;
104
  height: 100%
105
}
106

    
107
.dashboard-sensor-heading {
108
  text-align: right;
109

    
110
  @include media-breakpoint-down(xs) {
111
    text-align: center;
112
  }
113
}
114

    
115
.dashboard-button-separator {
116
  display: inline-flex;
117
  align-items: center;
118
  vertical-align: bottom;
119
  margin: 0 $grid-gutter-width / 2;
120
  width: 2px;
121
  height: 100%;
122
  background: $secondary;
123
}
124

    
125
.p-dialog {
126
  background: $primary
127
}
(1-1/9)