@beacon-interactive-systems-llc/beacon-platform-ui 19.0.6 → 19.0.7
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/package.json +1 -1
- package/styles/_gridstack.scss +75 -10
- package/styles/_layout.scss +2 -1
package/package.json
CHANGED
package/styles/_gridstack.scss
CHANGED
|
@@ -2,27 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
$platform_gridstack_contrasts: (
|
|
4
4
|
light: (
|
|
5
|
+
toolbar: $beacon-white,
|
|
6
|
+
toolbarText: $beacon-black,
|
|
7
|
+
toolbarShadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12),
|
|
8
|
+
scroller: $beacon-white,
|
|
9
|
+
scrollerShadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.22),
|
|
10
|
+
scrollerBorder: none,
|
|
11
|
+
scrollerIcon: $beacon-cyan-500,
|
|
5
12
|
optionsButton: $beacon-orange-500,
|
|
6
13
|
optionsButtonText: $beacon-white,
|
|
7
14
|
optionsRowBorder: $beacon-gray-100,
|
|
8
15
|
optionsTypeRow: $beacon-gray-100,
|
|
9
16
|
),
|
|
10
17
|
dark: (
|
|
18
|
+
toolbar: $beacon-gray-700,
|
|
19
|
+
toolbarText: $beacon-gray-200,
|
|
20
|
+
toolbarShadow: none,
|
|
21
|
+
scroller: $beacon-gray-600,
|
|
22
|
+
scrollerShadow: none,
|
|
23
|
+
scrollerBorder: 0.5px solid $beacon-gray-300,
|
|
24
|
+
scrollerIcon: $beacon-cyan-600,
|
|
11
25
|
optionsButton: $beacon-orange-500,
|
|
12
26
|
optionsButtonText: $beacon-white,
|
|
13
27
|
optionsRowBorder: $beacon-gray-300,
|
|
14
28
|
optionsTypeRow: $beacon-gray-600,
|
|
15
29
|
),
|
|
16
30
|
highcontrast: (
|
|
17
|
-
|
|
31
|
+
toolbar: $beacon-black,
|
|
32
|
+
toolbarText: $beacon-white,
|
|
33
|
+
toolbarShadow: none,
|
|
34
|
+
scroller: $beacon-black,
|
|
35
|
+
scrollerShadow: none,
|
|
36
|
+
scrollerBorder: 0.5px solid $beacon-white,
|
|
37
|
+
scrollerIcon: $highcontrast-bright-blue-100,
|
|
38
|
+
optionsButton: $highcontrast-bright-orange-200,
|
|
18
39
|
optionsButtonText: $beacon-white,
|
|
19
40
|
optionsRowBorder: $beacon-white,
|
|
20
41
|
optionsTypeRow: $beacon-gray-700,
|
|
21
42
|
)
|
|
22
43
|
);
|
|
23
44
|
|
|
45
|
+
// Setting the column widths - number of columns must match in a corresponding GridstackOptions in the app
|
|
24
46
|
.grid-stack > .grid-stack-item {
|
|
25
|
-
|
|
26
47
|
$gridstack-columns: 96;
|
|
27
48
|
|
|
28
49
|
@for $i from 1 through $gridstack-columns {
|
|
@@ -42,6 +63,55 @@ $platform_gridstack_contrasts: (
|
|
|
42
63
|
}
|
|
43
64
|
}
|
|
44
65
|
|
|
66
|
+
.dashboard-view-toolbar {
|
|
67
|
+
@include themify($platform_gridstack_contrasts) {
|
|
68
|
+
background: apply('toolbar');
|
|
69
|
+
box-shadow: apply('toolbarShadow');
|
|
70
|
+
color: apply('toolbarText');
|
|
71
|
+
}
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
height: 48px;
|
|
75
|
+
padding: 8px 16px;
|
|
76
|
+
margin-top: -12px;
|
|
77
|
+
margin-left: -16px;
|
|
78
|
+
margin-right: -16px;
|
|
79
|
+
|
|
80
|
+
.dashboard-buttons {
|
|
81
|
+
display: flex;
|
|
82
|
+
align-items: center;
|
|
83
|
+
|
|
84
|
+
.dashboard-scroll-btn {
|
|
85
|
+
@include themify($platform_gridstack_contrasts) {
|
|
86
|
+
background: apply('scroller');
|
|
87
|
+
box-shadow: apply('scrollerShadow');
|
|
88
|
+
border: apply('scrollerBorder');
|
|
89
|
+
|
|
90
|
+
mat-icon {
|
|
91
|
+
color: apply('scrollerIcon');
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
border-radius: 5px;
|
|
95
|
+
font-size: 24px;
|
|
96
|
+
height: 30px;
|
|
97
|
+
padding: 0px;
|
|
98
|
+
width: 32px;
|
|
99
|
+
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.dashboard-select {
|
|
103
|
+
margin-left: 8px;
|
|
104
|
+
margin-right: 8px;
|
|
105
|
+
width: 255px !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.three-dot-menu-trigger {
|
|
109
|
+
margin-left: 12px;
|
|
110
|
+
margin-right: 12px;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
45
115
|
.grid-stack {
|
|
46
116
|
width: calc(100% - 40px) !important;
|
|
47
117
|
|
|
@@ -71,15 +141,10 @@ $platform_gridstack_contrasts: (
|
|
|
71
141
|
color: apply('optionsButtonText');
|
|
72
142
|
}
|
|
73
143
|
border-radius: 30px;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
height: 40px;
|
|
77
|
-
margin: 0px 8px;
|
|
144
|
+
font-size: 16px;
|
|
145
|
+
height: 32px;
|
|
78
146
|
opacity: 0.8;
|
|
79
|
-
|
|
80
|
-
top: 20px;
|
|
81
|
-
right: 0px;
|
|
82
|
-
width: 40px;
|
|
147
|
+
width: 32px;
|
|
83
148
|
|
|
84
149
|
&:before {
|
|
85
150
|
content: "dashboard";
|
package/styles/_layout.scss
CHANGED
|
@@ -522,6 +522,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
522
522
|
width: calc(100vw - $leftnav-width);
|
|
523
523
|
min-width: 800px;
|
|
524
524
|
overflow-y: scroll;
|
|
525
|
+
padding: 16px;
|
|
525
526
|
transition: all 0.5s ease-in-out;
|
|
526
527
|
}
|
|
527
528
|
|
|
@@ -573,4 +574,4 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
573
574
|
|
|
574
575
|
.drawer__body.search__drawer {
|
|
575
576
|
transition: all 0.5s ease-in-out;
|
|
576
|
-
}
|
|
577
|
+
}
|