@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.
- package/assets/c8y-icon-dark.eot +0 -0
- package/assets/c8y-icon-dark.svg +116 -0
- package/assets/c8y-icon-dark.ttf +0 -0
- package/assets/c8y-icon-dark.woff +0 -0
- package/assets/c8y-icon-light.eot +0 -0
- package/assets/c8y-icon-light.svg +97 -0
- package/assets/c8y-icon-light.ttf +0 -0
- package/assets/c8y-icon-light.woff +0 -0
- package/img/datapoints-graph-widget.png +0 -0
- package/package.json +1 -1
- package/styles/_button-groups.less +5 -0
- package/styles/_buttons.less +1 -1
- package/styles/_c8y-action-bar.less +12 -10
- package/styles/_c8y-data-explorer.less +16 -0
- package/styles/_c8y-data-point-list.less +8 -6
- package/styles/_c8y-datapoint-pill.less +28 -3
- package/styles/_c8y-icons.less +813 -221
- package/styles/_c8y-list-group.less +10 -3
- package/styles/_dashboard-widgets.less +7 -0
- package/styles/_forms.less +5 -1
- package/styles/_input-groups.less +16 -0
- package/styles/_layouts.less +8 -0
- package/styles/utilities.less +7 -0
- package/variables/_c8y-icon-vars.less +198 -0
- package/variables/index.less +1 -0
- package/assets/c8yicon-dark.eot +0 -0
- package/assets/c8yicon-dark.svg +0 -697
- package/assets/c8yicon-dark.ttf +0 -0
- package/assets/c8yicon-dark.woff +0 -0
- package/assets/c8yicon-light.eot +0 -0
- package/assets/c8yicon-light.svg +0 -433
- package/assets/c8yicon-light.ttf +0 -0
- package/assets/c8yicon-light.woff +0 -0
package/styles/_buttons.less
CHANGED
|
@@ -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
|
-
|
|
35
|
-
|
|
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
|
-
|
|
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
|
-
|
|
43
|
-
|
|
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
|
|