sccoreui 6.3.69 → 6.3.71
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/dist/App.scss +7 -0
- package/dist/assets/sccoreicons.css +303 -309
- package/dist/assets/sccoreui.css +2 -8
- package/dist/components/form/form-fields/FieldLabel.js +1 -1
- package/dist/components/list-box-dropdown/list-box-dropdown.js +10 -6
- package/dist/directives/svg-icons.js +41 -0
- package/package.json +1 -1
package/dist/App.scss
CHANGED
|
@@ -1725,6 +1725,13 @@ code {
|
|
|
1725
1725
|
}
|
|
1726
1726
|
}
|
|
1727
1727
|
|
|
1728
|
+
.text-truncate {
|
|
1729
|
+
white-space: nowrap;
|
|
1730
|
+
overflow: hidden;
|
|
1731
|
+
text-overflow: ellipsis;
|
|
1732
|
+
line-height: 20px;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1728
1735
|
.no_icon {
|
|
1729
1736
|
.p-multiselect-label {
|
|
1730
1737
|
padding-left: 16px !important;
|