@beacon-interactive-systems-llc/beacon-platform-ui 17.6.3 → 17.6.5
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 +19 -4
- package/styles/_filters.scss +13 -6
- package/styles/_forms.scss +2 -2
- package/styles/_layout.scss +16 -8
- package/styles/_material-tabs.scss +10 -4
- package/styles/_menus.scss +21 -0
- package/styles/_ng-select.scss +27 -3
- package/styles/_palette.scss +1 -0
- package/styles/_quill.scss +7 -1
- package/styles/_tables.scss +1 -1
package/package.json
CHANGED
package/styles/_buttons.scss
CHANGED
|
@@ -25,7 +25,8 @@ $platform_button_contrasts: (
|
|
|
25
25
|
buttonAmbientBorder: $beacon-gray-400,
|
|
26
26
|
|
|
27
27
|
buttonDisabled: $beacon-gray-300,
|
|
28
|
-
buttonShadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16)
|
|
28
|
+
buttonShadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16),
|
|
29
|
+
buttonBorder: $beacon-gray-border
|
|
29
30
|
),
|
|
30
31
|
dark: (
|
|
31
32
|
buttonBlue: $beacon-blue-200,
|
|
@@ -53,7 +54,8 @@ $platform_button_contrasts: (
|
|
|
53
54
|
buttonAmbientBorder: $beacon-gray-300,
|
|
54
55
|
|
|
55
56
|
buttonDisabled: $beacon-gray-500,
|
|
56
|
-
buttonShadow: none
|
|
57
|
+
buttonShadow: none,
|
|
58
|
+
buttonBorder: $beacon-gray-border
|
|
57
59
|
),
|
|
58
60
|
highcontrast: (
|
|
59
61
|
buttonBlue: $highcontrast-bright-blue-200,
|
|
@@ -81,7 +83,8 @@ $platform_button_contrasts: (
|
|
|
81
83
|
buttonAmbientBorder: $beacon-white,
|
|
82
84
|
|
|
83
85
|
buttonDisabled: $beacon-gray-500,
|
|
84
|
-
buttonShadow: none
|
|
86
|
+
buttonShadow: none,
|
|
87
|
+
buttonBorder: $beacon-gray-border
|
|
85
88
|
)
|
|
86
89
|
);
|
|
87
90
|
|
|
@@ -219,13 +222,25 @@ button.platform-btn {
|
|
|
219
222
|
&--toggle {
|
|
220
223
|
@include themify($platform_button_contrasts) {
|
|
221
224
|
background-color: apply('buttonAmbient') !important;
|
|
222
|
-
border: 1px solid apply('
|
|
225
|
+
border: 1px solid apply('buttonBorder') !important;
|
|
223
226
|
}
|
|
224
227
|
border-radius: 15px;
|
|
228
|
+
height: 28px;
|
|
225
229
|
|
|
226
230
|
.group-btn {
|
|
227
231
|
border: none !important;
|
|
228
232
|
border-radius: 15px !important;
|
|
233
|
+
margin-top: auto;
|
|
234
|
+
margin-bottom: auto;
|
|
235
|
+
position: relative;
|
|
236
|
+
|
|
237
|
+
&:first-of-type {
|
|
238
|
+
margin-left: 2px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
&:last-of-type {
|
|
242
|
+
margin-right: 2px;
|
|
243
|
+
}
|
|
229
244
|
|
|
230
245
|
&:not(.selected) {
|
|
231
246
|
@include themify($platform_button_contrasts) {
|
package/styles/_filters.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
$platform_filter_contrasts: (
|
|
2
2
|
light: (
|
|
3
3
|
filterBackground: $beacon-dark-blue-100,
|
|
4
|
-
filterBorder: $beacon-gray-
|
|
4
|
+
filterBorder: $beacon-gray-border,
|
|
5
5
|
filterShadow: 0px 3px 3px $beacon-black,
|
|
6
6
|
filterSearchIcon: $beacon-gray-400,
|
|
7
7
|
filterChip: $beacon-green-100,
|
|
@@ -104,6 +104,10 @@ $date-filter-width: calc(1em * 8);
|
|
|
104
104
|
|
|
105
105
|
.showing-label {
|
|
106
106
|
@include font-size--default-md;
|
|
107
|
+
|
|
108
|
+
&:first-of-type {
|
|
109
|
+
padding-left: 8px;
|
|
110
|
+
}
|
|
107
111
|
}
|
|
108
112
|
|
|
109
113
|
.filter-chip-label {
|
|
@@ -115,14 +119,16 @@ $date-filter-width: calc(1em * 8);
|
|
|
115
119
|
.filter-chip {
|
|
116
120
|
@include font-size--default-md;
|
|
117
121
|
@include font-weight--semibold;
|
|
118
|
-
margin-left: 4px;
|
|
119
|
-
padding-left: .25rem;
|
|
120
|
-
padding-right: .25rem;
|
|
121
122
|
@include themify($platform_filter_contrasts) {
|
|
122
123
|
background: apply('filterChip');
|
|
123
124
|
color: apply('filterChipText');
|
|
124
125
|
}
|
|
125
126
|
|
|
127
|
+
height: 25px;
|
|
128
|
+
margin-left: 4px;
|
|
129
|
+
padding-left: .25rem;
|
|
130
|
+
padding-right: .25rem;
|
|
131
|
+
|
|
126
132
|
&::after {
|
|
127
133
|
@include font-color--semi-muted;
|
|
128
134
|
content: "close";
|
|
@@ -138,9 +144,10 @@ $date-filter-width: calc(1em * 8);
|
|
|
138
144
|
}
|
|
139
145
|
|
|
140
146
|
.filter-input {
|
|
147
|
+
font-size: 14px;
|
|
141
148
|
min-width: $min-filter-input-width;
|
|
142
149
|
max-width: $max-filter-input-width;
|
|
143
|
-
padding-left:
|
|
150
|
+
padding-left: 26px;
|
|
144
151
|
}
|
|
145
152
|
|
|
146
153
|
.date-filter {
|
|
@@ -158,7 +165,7 @@ $date-filter-width: calc(1em * 8);
|
|
|
158
165
|
font-family: "Material Icons";
|
|
159
166
|
font-size: 16px;
|
|
160
167
|
position: relative;
|
|
161
|
-
left:
|
|
168
|
+
left: 8px;
|
|
162
169
|
top: 0.4rem;
|
|
163
170
|
z-index: 99;
|
|
164
171
|
}
|
package/styles/_forms.scss
CHANGED
package/styles/_layout.scss
CHANGED
|
@@ -38,7 +38,7 @@ $platform_layout_contrasts: (
|
|
|
38
38
|
);
|
|
39
39
|
|
|
40
40
|
$header-height: 50px;
|
|
41
|
-
$detail-header-height:
|
|
41
|
+
$detail-header-height: 78px;
|
|
42
42
|
$min-detail-width: 1400px;
|
|
43
43
|
$leftnav-width: 212px;
|
|
44
44
|
$leftnav-collapsed-width: 50px;
|
|
@@ -102,9 +102,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
mat-icon {
|
|
105
|
-
height:
|
|
106
|
-
width:
|
|
107
|
-
font-size:
|
|
105
|
+
height: 24px;
|
|
106
|
+
width: 24px;
|
|
107
|
+
font-size: 24px;
|
|
108
108
|
position: relative;
|
|
109
109
|
top: 10px;
|
|
110
110
|
|
|
@@ -157,8 +157,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
157
157
|
@include themify($platform_layout_contrasts) {
|
|
158
158
|
background: apply('containerHeaderBackground');
|
|
159
159
|
}
|
|
160
|
-
|
|
161
|
-
|
|
160
|
+
|
|
161
|
+
background-color: #f3f4f6;
|
|
162
|
+
box-shadow: 0 3px 6px #00000029;
|
|
163
|
+
height: 78px;
|
|
164
|
+
padding: 12px 12px 60px;
|
|
162
165
|
position: absolute;
|
|
163
166
|
width: 100%;
|
|
164
167
|
|
|
@@ -213,6 +216,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
213
216
|
align-items: center;
|
|
214
217
|
white-space: pre-wrap;
|
|
215
218
|
}
|
|
219
|
+
|
|
220
|
+
mat-icon.three-dot-menu-trigger {
|
|
221
|
+
position: relative;
|
|
222
|
+
top: 7.5px;
|
|
223
|
+
}
|
|
216
224
|
}
|
|
217
225
|
|
|
218
226
|
&__tabs {
|
|
@@ -238,7 +246,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
238
246
|
|
|
239
247
|
&__section {
|
|
240
248
|
overflow: scroll;
|
|
241
|
-
padding-top:
|
|
249
|
+
padding-top: 16px;
|
|
242
250
|
position: relative;
|
|
243
251
|
top: -16px;
|
|
244
252
|
transition: width 0.5s ease-in-out;
|
|
@@ -261,7 +269,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
261
269
|
padding: 16px;
|
|
262
270
|
position: fixed;
|
|
263
271
|
right: 0px;
|
|
264
|
-
top: calc($header-height + $detail-header-height);
|
|
272
|
+
top: calc($header-height + $detail-header-height + 6px);
|
|
265
273
|
width: $detail-sidebar-width;
|
|
266
274
|
|
|
267
275
|
&__title {
|
|
@@ -42,7 +42,7 @@ $platform_tab_contrasts: (
|
|
|
42
42
|
|
|
43
43
|
.detail__tabs {
|
|
44
44
|
position: absolute;
|
|
45
|
-
top:
|
|
45
|
+
top: 128px;
|
|
46
46
|
|
|
47
47
|
mat-tab-header .mat-mdc-tab-labels .mdc-tab {
|
|
48
48
|
height: 24px;
|
|
@@ -54,7 +54,10 @@ $platform_tab_contrasts: (
|
|
|
54
54
|
.mat-mdc-tab-group {
|
|
55
55
|
.mat-mdc-tab-header {
|
|
56
56
|
box-shadow: none;
|
|
57
|
-
padding-left: 14px !important;
|
|
57
|
+
// padding-left: 14px !important;
|
|
58
|
+
margin-top: -74px;
|
|
59
|
+
position: fixed !important;
|
|
60
|
+
// padding-bottom: 8px;
|
|
58
61
|
|
|
59
62
|
.mat-tab-label-container {
|
|
60
63
|
padding-left: 14px;
|
|
@@ -63,13 +66,15 @@ $platform_tab_contrasts: (
|
|
|
63
66
|
.mdc-tab__text-label {
|
|
64
67
|
font-size: 14px;
|
|
65
68
|
height: 23px;
|
|
69
|
+
letter-spacing: 0.5px;
|
|
66
70
|
min-width: unset;
|
|
67
|
-
padding: 0 2px;
|
|
71
|
+
padding: 0 2px 6px 2px;
|
|
68
72
|
|
|
69
73
|
mat-icon.tab-icon {
|
|
74
|
+
font-size: 15px;
|
|
70
75
|
height: 16px;
|
|
76
|
+
margin-right: 4px;
|
|
71
77
|
width: 16px;
|
|
72
|
-
font-size: 14px;
|
|
73
78
|
}
|
|
74
79
|
}
|
|
75
80
|
|
|
@@ -83,6 +88,7 @@ $platform_tab_contrasts: (
|
|
|
83
88
|
|
|
84
89
|
.mat-mdc-tab-body-wrapper {
|
|
85
90
|
min-height: 324px;
|
|
91
|
+
margin-top: -36px;
|
|
86
92
|
}
|
|
87
93
|
|
|
88
94
|
// relevant connector tabs
|
package/styles/_menus.scss
CHANGED
|
@@ -9,3 +9,24 @@
|
|
|
9
9
|
padding-bottom: 0px !important;
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
.mat-mdc-menu-panel {
|
|
15
|
+
.mat-mdc-menu-content {
|
|
16
|
+
.mat-mdc-menu-item {
|
|
17
|
+
min-height: 32px;
|
|
18
|
+
min-width: 132px;
|
|
19
|
+
|
|
20
|
+
mat-icon {
|
|
21
|
+
font-size: 18px;
|
|
22
|
+
height: 18px;
|
|
23
|
+
margin-right: 8px;
|
|
24
|
+
width: 18px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.mat-mdc-menu-item-text {
|
|
28
|
+
font-size: 14px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
package/styles/_ng-select.scss
CHANGED
|
@@ -39,7 +39,8 @@ $min-dropdown-panel-width: 215px;
|
|
|
39
39
|
@include themify($platform_form_contrasts) {
|
|
40
40
|
background: apply('formInputBackground') !important;
|
|
41
41
|
color: apply('formText') !important;
|
|
42
|
-
border:
|
|
42
|
+
border: none;// 0.5px solid apply('formInputBorder') !important;
|
|
43
|
+
box-shadow: 0px 3px 7px 2px #00000029;
|
|
43
44
|
|
|
44
45
|
.ng-dropdown-header {
|
|
45
46
|
border-bottom: 1px solid apply('formInputBorder') !important;
|
|
@@ -90,6 +91,7 @@ $min-dropdown-panel-width: 215px;
|
|
|
90
91
|
// For use with platform-selection-list: makes each select as wide as its placeholder text
|
|
91
92
|
&.platform-filter-select {
|
|
92
93
|
border-radius: 4px;
|
|
94
|
+
font-size: 14px;
|
|
93
95
|
|
|
94
96
|
&.ng-select-multiple .ng-value {
|
|
95
97
|
@include font-weight--semibold;
|
|
@@ -134,13 +136,35 @@ $min-dropdown-panel-width: 215px;
|
|
|
134
136
|
}
|
|
135
137
|
|
|
136
138
|
.ng-select .ng-arrow-wrapper::before {
|
|
137
|
-
font-family: 'Material Icons';
|
|
138
139
|
content: 'expand_more';
|
|
140
|
+
font-family: 'Material Icons';
|
|
141
|
+
position: relative;
|
|
142
|
+
top: 2px;
|
|
139
143
|
}
|
|
140
144
|
|
|
141
145
|
.ng-select.ng-select-opened .ng-arrow-wrapper::before {
|
|
142
|
-
font-family: 'Material Icons';
|
|
143
146
|
content: 'expand_less';
|
|
147
|
+
font-family: 'Material Icons';
|
|
148
|
+
position: relative;
|
|
149
|
+
top: 2px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.ng-select .ng-clear-wrapper {
|
|
153
|
+
position: relative;
|
|
154
|
+
top: 2px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.ng-select.search {
|
|
158
|
+
font-size: 14px;
|
|
159
|
+
line-height: 25px;
|
|
160
|
+
|
|
161
|
+
.ng-select-container {
|
|
162
|
+
width: 216px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.ng-arrow-wrapper .ng-arrow {
|
|
166
|
+
display: none;
|
|
167
|
+
}
|
|
144
168
|
}
|
|
145
169
|
|
|
146
170
|
/* apply material form control highlight animation on focus for filter bar dropdowns */
|
package/styles/_palette.scss
CHANGED
package/styles/_quill.scss
CHANGED
|
@@ -78,7 +78,7 @@ quill-editor {
|
|
|
78
78
|
background: apply('formInputDisabled') !important;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
-
min-height:
|
|
81
|
+
min-height: 45px;
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -104,6 +104,12 @@ quill-editor {
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
quill-view {
|
|
108
|
+
.ql-editor {
|
|
109
|
+
padding: 0;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
107
113
|
.quill-read-edit-toggle-container {
|
|
108
114
|
&:hover {
|
|
109
115
|
@include themify($platform_form_contrasts) {
|