@beacon-interactive-systems-llc/beacon-platform-ui 17.8.1 → 17.9.0
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/_buttons.scss +10 -0
- package/styles/_filters.scss +5 -0
- package/styles/_layout.scss +10 -2
- package/styles/_material-drawer.scss +1 -1
- package/styles/_material-tabs.scss +4 -0
- package/styles/_ng-select.scss +33 -1
- package/styles/_popover.scss +4 -5
- package/styles/_typography.scss +7 -0
- package/styles/_widgets.scss +2 -2
- package/styles/styles.scss +2 -2
package/package.json
CHANGED
package/styles/_buttons.scss
CHANGED
|
@@ -142,6 +142,16 @@ button.platform-btn {
|
|
|
142
142
|
text-transform: uppercase;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
&--header-action {
|
|
146
|
+
position: relative;
|
|
147
|
+
top: 10px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
&--header-action-pill {
|
|
151
|
+
position: relative;
|
|
152
|
+
top: 12px;
|
|
153
|
+
}
|
|
154
|
+
|
|
145
155
|
&--height-sm {
|
|
146
156
|
height: 24px;
|
|
147
157
|
}
|
package/styles/_filters.scss
CHANGED
|
@@ -8,6 +8,7 @@ $platform_filter_contrasts: (
|
|
|
8
8
|
filterChipText: $beacon-black,
|
|
9
9
|
filterDropdownFocus: $beacon-dark-blue-200,
|
|
10
10
|
filterDropdownText: $beacon-cyan-600,
|
|
11
|
+
showingRowBg: $beacon-white
|
|
11
12
|
),
|
|
12
13
|
dark: (
|
|
13
14
|
filterBackground: $beacon-gray-600,
|
|
@@ -18,6 +19,7 @@ $platform_filter_contrasts: (
|
|
|
18
19
|
filterChipText: $beacon-gray-300,
|
|
19
20
|
filterDropdownFocus: $beacon-dark-blue-400,
|
|
20
21
|
filterDropdownText: $beacon-cyan-300,
|
|
22
|
+
showingRowBg: $beacon-gray-600
|
|
21
23
|
),
|
|
22
24
|
highcontrast: (
|
|
23
25
|
filterBackground: $beacon-black,
|
|
@@ -28,6 +30,7 @@ $platform_filter_contrasts: (
|
|
|
28
30
|
filterChipText: $beacon-black,
|
|
29
31
|
filterDropdownFocus: $highcontrast-bright-blue-200,
|
|
30
32
|
filterDropdownText: $beacon-white,
|
|
33
|
+
showingRowBg: $beacon-black
|
|
31
34
|
)
|
|
32
35
|
);
|
|
33
36
|
|
|
@@ -94,6 +97,7 @@ $date-filter-width: calc(1em * 8);
|
|
|
94
97
|
@include font-color--default;
|
|
95
98
|
@include themify($platform_filter_contrasts) {
|
|
96
99
|
border-top: 0.5px solid apply('filterBorder');
|
|
100
|
+
background: apply('showingRowBg');
|
|
97
101
|
}
|
|
98
102
|
padding: 6px 8px;
|
|
99
103
|
display: flex;
|
|
@@ -124,6 +128,7 @@ $date-filter-width: calc(1em * 8);
|
|
|
124
128
|
color: apply('filterChipText');
|
|
125
129
|
}
|
|
126
130
|
|
|
131
|
+
border-radius: 2px;
|
|
127
132
|
height: 25px;
|
|
128
133
|
margin-left: 4px;
|
|
129
134
|
padding-left: .25rem;
|
package/styles/_layout.scss
CHANGED
|
@@ -219,7 +219,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
219
219
|
|
|
220
220
|
mat-icon.three-dot-menu-trigger {
|
|
221
221
|
position: relative;
|
|
222
|
-
top:
|
|
222
|
+
top: 13px;
|
|
223
|
+
|
|
224
|
+
&--pill {
|
|
225
|
+
top: 16px;
|
|
226
|
+
}
|
|
223
227
|
}
|
|
224
228
|
}
|
|
225
229
|
|
|
@@ -299,7 +303,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
299
303
|
border: 1px solid apply('containerBorder');
|
|
300
304
|
}
|
|
301
305
|
background: $beacon-white;
|
|
302
|
-
border-radius:
|
|
306
|
+
border-radius: 5px;
|
|
303
307
|
margin-bottom: 16px;
|
|
304
308
|
min-height: 80px;
|
|
305
309
|
padding: 12px 16px;
|
|
@@ -359,6 +363,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
359
363
|
text-decoration: underline;
|
|
360
364
|
}
|
|
361
365
|
|
|
366
|
+
&--light {
|
|
367
|
+
@include font-color--blue--light;
|
|
368
|
+
}
|
|
369
|
+
|
|
362
370
|
&--muted {
|
|
363
371
|
@include font-color--blue--muted;
|
|
364
372
|
}
|
|
@@ -34,6 +34,10 @@ $platform_tab_contrasts: (
|
|
|
34
34
|
color: apply('tabLabelActive') !important;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
+
&:not(.mat-tab--active) .mdc-tab__text-label {
|
|
38
|
+
@include font-weight--light;
|
|
39
|
+
}
|
|
40
|
+
|
|
37
41
|
.mdc-tab-indicator__content--underline {
|
|
38
42
|
border-color: apply('tabBorderBottom') !important;
|
|
39
43
|
}
|
package/styles/_ng-select.scss
CHANGED
|
@@ -36,6 +36,29 @@ $min-dropdown-panel-width: 215px;
|
|
|
36
36
|
|
|
37
37
|
.ng-dropdown-panel {
|
|
38
38
|
min-width: $min-dropdown-panel-width;
|
|
39
|
+
max-height: 200px;
|
|
40
|
+
|
|
41
|
+
&::-webkit-scrollbar {
|
|
42
|
+
width: 6px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&::-webkit-scrollbar-track {
|
|
46
|
+
background: #fff;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&::-webkit-scrollbar-thumb {
|
|
50
|
+
background: $beacon-dark-blue-300;
|
|
51
|
+
border-radius: 4px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&::-webkit-scrollbar {
|
|
55
|
+
display: block !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
-ms-overflow-style: auto;
|
|
59
|
+
scrollbar-width: auto;
|
|
60
|
+
overflow-y: auto;//scroll;
|
|
61
|
+
|
|
39
62
|
@include themify($platform_form_contrasts) {
|
|
40
63
|
background: apply('formInputBackground') !important;
|
|
41
64
|
color: apply('formText') !important;
|
|
@@ -62,12 +85,18 @@ $min-dropdown-panel-width: 215px;
|
|
|
62
85
|
|
|
63
86
|
&.ng-select-multiple .ng-value {
|
|
64
87
|
@include font-weight--semibold;
|
|
65
|
-
border-radius: 8px !important;
|
|
66
88
|
@include themify($platform_form_contrasts) {
|
|
67
89
|
background: apply('formHighlightOrange') !important;
|
|
68
90
|
color: apply('formHighlightOrangeText') !important;
|
|
69
91
|
}
|
|
70
92
|
|
|
93
|
+
border-radius: 8px !important;
|
|
94
|
+
margin-right: 0px !important;
|
|
95
|
+
|
|
96
|
+
.ng-value-label {
|
|
97
|
+
padding: 1px 0px 1px 5px !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
71
100
|
.ng-value-icon {
|
|
72
101
|
z-index: 1001;
|
|
73
102
|
padding-left: 0px !important;
|
|
@@ -107,10 +136,13 @@ $min-dropdown-panel-width: 215px;
|
|
|
107
136
|
@include themify($platform_filter_contrasts) {
|
|
108
137
|
background: apply('filterDropdownFocus') !important;
|
|
109
138
|
}
|
|
139
|
+
|
|
140
|
+
border-radius: 4px;
|
|
110
141
|
}
|
|
111
142
|
|
|
112
143
|
.ng-value-container {
|
|
113
144
|
padding-left: 0px;
|
|
145
|
+
|
|
114
146
|
.ng-placeholder {
|
|
115
147
|
@include font-weight--semibold;
|
|
116
148
|
@include themify($platform_filter_contrasts) {
|
package/styles/_popover.scss
CHANGED
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
$platform_popover_contrasts: (
|
|
2
2
|
light: (
|
|
3
3
|
popoverBackground: $beacon-dark-blue-50,
|
|
4
|
-
popoverBorder: $beacon-gray-300,
|
|
5
4
|
),
|
|
6
5
|
dark: (
|
|
7
6
|
popoverBackground: $beacon-gray-700,
|
|
8
|
-
popoverBorder: $beacon-gray-500,
|
|
9
7
|
),
|
|
10
8
|
highcontrast: (
|
|
11
9
|
popoverBackground: $beacon-black,
|
|
12
|
-
popoverBorder: $beacon-white,
|
|
13
10
|
)
|
|
14
11
|
);
|
|
15
12
|
|
|
16
13
|
.popover {
|
|
17
14
|
@include themify($platform_popover_contrasts) {
|
|
18
15
|
background: apply('popoverBackground');
|
|
19
|
-
border: 1px solid apply('popoverBorder');
|
|
20
16
|
}
|
|
21
|
-
|
|
17
|
+
box-shadow: -2px 0 6px -2px rgba(0, 0, 0, 0.2),
|
|
18
|
+
2px 0 6px -2px rgba(0, 0, 0, 0.2),
|
|
19
|
+
0 2px 6px -2px rgba(0, 0, 0, 0.2);
|
|
22
20
|
max-width: 100%;
|
|
21
|
+
position: absolute;
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
.popover-arrow {
|
package/styles/_typography.scss
CHANGED
|
@@ -7,8 +7,10 @@ $platform_text_contrasts: (
|
|
|
7
7
|
textDefaultMuted: $beacon-gray-300,
|
|
8
8
|
textDefaultInvert: $beacon-white,
|
|
9
9
|
textBlue: $beacon-dark-blue-500,
|
|
10
|
+
textBlueLight: $beacon-blue-200,
|
|
10
11
|
textBlueDark: $beacon-dark-blue-600,
|
|
11
12
|
textBlueHighlight: $beacon-dark-blue-300,
|
|
13
|
+
textBlueDarkHighlight: $beacon-dark-blue-400,
|
|
12
14
|
textCyan: $beacon-cyan-500,
|
|
13
15
|
textCyanDark: $beacon-cyan-600,
|
|
14
16
|
textGreen: $beacon-green-500,
|
|
@@ -25,8 +27,10 @@ $platform_text_contrasts: (
|
|
|
25
27
|
textDefaultSemiMuted: $beacon-gray-300,
|
|
26
28
|
textDefaultInvert: $beacon-gray-500,
|
|
27
29
|
textBlue: $beacon-dark-blue-200,
|
|
30
|
+
textBlueLight: $beacon-blue-200,
|
|
28
31
|
textBlueDark: $beacon-dark-blue-400,
|
|
29
32
|
textBlueHighlight: $beacon-dark-blue-300,
|
|
33
|
+
textBlueDarkHighlight: $beacon-dark-blue-400,
|
|
30
34
|
textCyan: $beacon-cyan-100,
|
|
31
35
|
textCyanDark: $beacon-cyan-200,
|
|
32
36
|
textGreen: $beacon-green-400,
|
|
@@ -43,8 +47,10 @@ $platform_text_contrasts: (
|
|
|
43
47
|
textDefaultSemiMuted: $beacon-white,
|
|
44
48
|
textDefaultInvert: $beacon-black,
|
|
45
49
|
textBlue: $highcontrast-bright-blue-200,
|
|
50
|
+
textBlueLight: $beacon-blue-200,
|
|
46
51
|
textBlueDark: $highcontrast-bright-blue-300,
|
|
47
52
|
textBlueHighlight: $highcontrast-bright-blue-200,
|
|
53
|
+
textBlueDarkHighlight: $beacon-dark-blue-400,
|
|
48
54
|
textCyan: $highcontrast-bright-blue-100,
|
|
49
55
|
textCyanDark: $highcontrast-bright-blue-200,
|
|
50
56
|
textGreen: $highcontrast-bright-green-200,
|
|
@@ -86,6 +92,7 @@ $font-sizes: 8px, 10px, 12px, 14px, 16px, 18px, 20px, 24px, 32px;
|
|
|
86
92
|
@mixin font-color--muted { @include themify($platform_text_contrasts) { color: apply('textDefaultMuted') !important; } }
|
|
87
93
|
@mixin font-color--semi-muted { @include themify($platform_text_contrasts) { color: apply('textDefaultSemiMuted') !important; } }
|
|
88
94
|
@mixin font-color--blue { @include themify($platform_text_contrasts) { color: apply('textBlue') !important; } }
|
|
95
|
+
@mixin font-color--blue--light { @include themify($platform_text_contrasts) { color: apply('textBlueLight') !important; } }
|
|
89
96
|
@mixin font-color--blue--muted { @include themify($platform_text_contrasts) { color: apply('textBlueHighlight') !important; } }
|
|
90
97
|
@mixin font-color--dark-background { @include themify($platform_text_contrasts) { color: apply('textDarkBackground') !important; } }
|
|
91
98
|
@mixin font-color--green { @include themify($platform_text_contrasts) { color: apply('textGreen') !important; } }
|
package/styles/_widgets.scss
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
$platform_widget_contrasts: (
|
|
4
4
|
light: (
|
|
5
5
|
widgetText: $beacon-black,
|
|
6
|
-
widgetBackground: $beacon-
|
|
6
|
+
widgetBackground: $beacon-dark-blue-50,
|
|
7
7
|
widgetBackgroundSecondary: $beacon-dark-blue-50,
|
|
8
|
-
widgetBorder: $beacon-
|
|
8
|
+
widgetBorder: $beacon-dark-blue-200,
|
|
9
9
|
widgetHighlight: $beacon-dark-blue-200
|
|
10
10
|
),
|
|
11
11
|
dark: (
|
package/styles/styles.scss
CHANGED
|
@@ -134,10 +134,10 @@ button, a {
|
|
|
134
134
|
|
|
135
135
|
@include themify($platform_text_contrasts) {
|
|
136
136
|
&.blue {
|
|
137
|
-
color: apply('
|
|
137
|
+
color: apply('textBlueDarkHighlight');
|
|
138
138
|
|
|
139
139
|
&:hover {
|
|
140
|
-
color: apply('
|
|
140
|
+
color: apply('textBlueDarkHighlight') !important;
|
|
141
141
|
cursor: default;
|
|
142
142
|
}
|
|
143
143
|
}
|