@beacon-interactive-systems-llc/beacon-platform-ui 19.2.7 → 19.2.9
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/_bootstrap-datepicker.scss +12 -0
- package/styles/_checkboxes.scss +14 -0
- package/styles/_forms.scss +9 -0
- package/styles/_layout.scss +6 -2
- package/styles/styles.scss +1 -0
package/package.json
CHANGED
|
@@ -109,3 +109,15 @@ mat-icon.calendar-icon {
|
|
|
109
109
|
input[type="time"]::-webkit-calendar-picker-indicator {
|
|
110
110
|
background: none;
|
|
111
111
|
}
|
|
112
|
+
|
|
113
|
+
input[type="time"] {
|
|
114
|
+
-webkit-appearance: textfield; /* or none */
|
|
115
|
+
-moz-appearance: textfield;
|
|
116
|
+
appearance: textfield;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
input[type="time"]::-webkit-calendar-picker-indicator,
|
|
120
|
+
input[type="time"]::-webkit-clear-button,
|
|
121
|
+
input[type="time"]::-webkit-inner-spin-button {
|
|
122
|
+
display: none;
|
|
123
|
+
}
|
package/styles/_checkboxes.scss
CHANGED
|
@@ -87,6 +87,20 @@ $platform_checkbox_contrasts: (
|
|
|
87
87
|
background-color: apply('checkboxList') !important;
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
|
+
|
|
91
|
+
.mdc-list-item__primary-text {
|
|
92
|
+
@include font-color--default;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&.horizontal-list {
|
|
97
|
+
flex-direction: row;
|
|
98
|
+
|
|
99
|
+
.platform-list-option {
|
|
100
|
+
display: inline-flex;
|
|
101
|
+
width: auto;
|
|
102
|
+
flex-grow: 0;
|
|
103
|
+
}
|
|
90
104
|
}
|
|
91
105
|
}
|
|
92
106
|
|
package/styles/_forms.scss
CHANGED
|
@@ -200,6 +200,15 @@ $control-width-options: 40px, 56px, 80px, 108px, 124px, 140px;
|
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
|
+
|
|
204
|
+
.form-quill-view-container {
|
|
205
|
+
@include themify($platform_form_contrasts) {
|
|
206
|
+
color: apply('formText');
|
|
207
|
+
background: apply('formInputDisabled');
|
|
208
|
+
border: 1px solid apply('formInputBorder');
|
|
209
|
+
}
|
|
210
|
+
padding: 0.375rem 0.75rem
|
|
211
|
+
}
|
|
203
212
|
}
|
|
204
213
|
|
|
205
214
|
.drawer-file-upload {
|
package/styles/_layout.scss
CHANGED
|
@@ -627,6 +627,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
627
627
|
height: 100vh;
|
|
628
628
|
width: 100%;
|
|
629
629
|
|
|
630
|
+
&.showing-cui {
|
|
631
|
+
height: calc(100vh - 24px);
|
|
632
|
+
margin-top: 24px;
|
|
633
|
+
}
|
|
634
|
+
|
|
630
635
|
.parent-row {
|
|
631
636
|
@include themify($platform_layout_contrasts) {
|
|
632
637
|
background: apply('fullDetailParentBackground');
|
|
@@ -698,7 +703,6 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
698
703
|
flex-grow: 1;
|
|
699
704
|
padding: 8px 16px;
|
|
700
705
|
overflow-y: auto;
|
|
701
|
-
height: 100vh;
|
|
702
706
|
|
|
703
707
|
.focused-detail-widget {
|
|
704
708
|
@include widget-background-color;
|
|
@@ -732,7 +736,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
732
736
|
.list-view-container-widget {
|
|
733
737
|
.list-view-container {
|
|
734
738
|
height: unset !important;
|
|
735
|
-
|
|
739
|
+
|
|
736
740
|
.nested-list-container {
|
|
737
741
|
height: unset !important;
|
|
738
742
|
}
|
package/styles/styles.scss
CHANGED