@c8y/style 1021.51.1 → 1021.54.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -375,7 +375,7 @@ label > .btn-clean {
375
375
  .legend &,
376
376
  &--sm {
377
377
  display: inline;
378
- vertical-align: super;
378
+ align-self: center;
379
379
  height: 14px;
380
380
  width: 14px;
381
381
  &::before {
@@ -50,22 +50,22 @@
50
50
  }
51
51
  }
52
52
 
53
- body:not(:has(.app-main-header)){
53
+ body:not(:has(.app-main-header)) {
54
54
  .c8y-ui-action-bar {
55
55
  top: 0;
56
56
  &.has-tabs {
57
57
  top: 48px;
58
58
  }
59
- @media(max-width: @screen-xs-max){
60
- &.has-tabs{
61
- display: none
59
+ @media (max-width: @screen-xs-max) {
60
+ &.has-tabs {
61
+ display: none;
62
62
  }
63
- .navbar-header{
63
+ .navbar-header {
64
64
  display: none;
65
65
  }
66
66
  }
67
67
  }
68
- &:has(.vertical-tabs){
68
+ &:has(.vertical-tabs) {
69
69
  .c8y-ui-action-bar {
70
70
  top: 0;
71
71
  }
@@ -127,6 +127,9 @@ body:not(:has(.app-main-header)){
127
127
  &.uib-datepicker-popup {
128
128
  width: 280px;
129
129
  }
130
+ &.dropdown-menu-wide {
131
+ max-width: 400px;
132
+ }
130
133
  }
131
134
  }
132
135
  }
@@ -155,11 +158,10 @@ body:not(:has(.app-main-header)){
155
158
  margin: 0;
156
159
  padding: 7px @margin-8;
157
160
 
158
- &:first-child{
161
+ &:first-child {
159
162
  padding-left: 0;
160
163
  }
161
164
  }
162
-
163
165
 
164
166
  > .btn {
165
167
  float: none;
@@ -287,9 +289,9 @@ body:not(:has(.app-main-header)){
287
289
  }
288
290
  }
289
291
  }
290
- &.no-remove.more-wrapper{
292
+ &.no-remove.more-wrapper {
291
293
  height: 0;
292
- .dropdown{
294
+ .dropdown {
293
295
  border-top: 0;
294
296
  }
295
297
  }
@@ -22,6 +22,15 @@ c8y-chart {
22
22
  fill: currentColor;
23
23
  }
24
24
 
25
+ .data-point-explorer .chart-container{
26
+ min-height: 280px;
27
+ }
28
+
29
+ .card-dashboard .chart-container{
30
+ max-height: calc(100% - 95px);
31
+ max-width: 99.5%;
32
+ }
33
+
25
34
  .top-chart-bar {
26
35
  justify-content: space-between;
27
36
  margin: 2px 0 0;
@@ -218,6 +227,13 @@ c8y-chart {
218
227
  left: 56px;
219
228
  }
220
229
 
230
+ .chart-load-more{
231
+ position: absolute;
232
+ left: 48px;
233
+ right: 11px;
234
+ bottom: 3px;
235
+ }
236
+
221
237
  .meausurements2 c8y-measurements-icon-bar {
222
238
  display: block;
223
239
  padding-top: 5px;
@@ -12,7 +12,9 @@
12
12
  }
13
13
  }
14
14
 
15
- c8y-datapoint-selection-list {
15
+ c8y-datapoint-selection-list,
16
+ c8y-alarm-event-selection-list {
17
+
16
18
  .c8y-list__item__actions {
17
19
  align-self: center;
18
20
  }
@@ -30,8 +32,8 @@ c8y-datapoint-selection-list {
30
32
  }
31
33
  }
32
34
 
33
- c8y-datapoint-selector-list-item {
34
- .c8y-list__item__actions{
35
- padding-top: 10px!important;
36
- }
37
- }
35
+ // c8y-datapoint-selector-list-item {
36
+ // .c8y-list__item__actions{
37
+ // padding-top: 10px!important;
38
+ // }
39
+ // }
@@ -27,11 +27,31 @@
27
27
  }
28
28
  }
29
29
 
30
+ .c8y-datapoint-pill{
31
+ &__btn {
32
+ &, &:not(.btn){
33
+ padding: @margin-4 @margin-4 @margin-4 @margin-base;
34
+ &:first-child{
35
+ border-bottom-left-radius: @margin-16!important;
36
+ border-top-left-radius: @margin-16!important;
37
+ }
38
+ + .c8y-datapoint-pill__btn{
39
+ border-right: 0;
40
+ padding-right: @margin-base;
41
+ }
42
+ }
43
+ }
44
+ }
30
45
 
31
46
  .c8y-alarm-pill {
32
47
  border-radius: @margin-4;
33
48
  &__btn {
34
- padding: @margin-4;
49
+ &, &:not(.btn){
50
+ padding: @margin-4!important;
51
+ + .c8y-alarm-pill__btn{
52
+ border-right: 0;
53
+ }
54
+ }
35
55
  }
36
56
  }
37
57
 
@@ -39,8 +59,13 @@
39
59
  border-radius: 2px;
40
60
  border: 1px dotted @component-color-text-muted;
41
61
  &__btn {
42
- border-right: 1px dotted @component-color-text-muted;
43
- padding: @margin-4;
62
+ &, &:not(.btn){
63
+ border-right: 1px dotted @component-color-text-muted;
64
+ padding: @margin-4 !important;
65
+ + .c8y-event-pill__btn{
66
+ border-right: 0;
67
+ }
68
+ }
44
69
  }
45
70
  }
46
71