sccoreui 6.3.79 → 6.3.80
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 +12 -7
- package/dist/assets/sccoreui.css +3 -2
- package/package.json +1 -1
package/dist/App.scss
CHANGED
|
@@ -440,14 +440,19 @@ code {
|
|
|
440
440
|
.p-multiselect-items-wrapper {
|
|
441
441
|
.p-multiselect-item.p-highlight {
|
|
442
442
|
&::after {
|
|
443
|
-
content: "";
|
|
444
|
-
width: 14px;
|
|
445
|
-
height: 6px;
|
|
446
|
-
border-left: 2px solid #132067;
|
|
447
|
-
border-bottom: 2px solid #132067;
|
|
448
|
-
transform: rotate(-45deg);
|
|
443
|
+
// content: "";
|
|
444
|
+
// width: 14px;
|
|
445
|
+
// height: 6px;
|
|
446
|
+
// border-left: 2px solid #132067;
|
|
447
|
+
// border-bottom: 2px solid #132067;
|
|
448
|
+
// transform: rotate(-45deg);
|
|
449
|
+
// position: absolute;
|
|
450
|
+
// right: 10px;
|
|
451
|
+
content: url("./assets/png/checkmark_icon.png");
|
|
449
452
|
position: absolute;
|
|
450
|
-
|
|
453
|
+
top: 48%;
|
|
454
|
+
right: 8px;
|
|
455
|
+
transform: translateY(-50%);
|
|
451
456
|
}
|
|
452
457
|
}
|
|
453
458
|
}
|
package/dist/assets/sccoreui.css
CHANGED
|
@@ -1849,7 +1849,7 @@ a {
|
|
|
1849
1849
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
1850
1850
|
}
|
|
1851
1851
|
.p-multiselect-panel .p-multiselect-header {
|
|
1852
|
-
padding:
|
|
1852
|
+
padding: 6px;
|
|
1853
1853
|
border-bottom: 1px solid #dee2e6;
|
|
1854
1854
|
color: #343a40;
|
|
1855
1855
|
background: #f8f9fa;
|
|
@@ -1860,7 +1860,8 @@ a {
|
|
|
1860
1860
|
/* display: none; */
|
|
1861
1861
|
}
|
|
1862
1862
|
.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container {
|
|
1863
|
-
margin: 0 0.3rem;
|
|
1863
|
+
/* margin: 0 0.3rem; */
|
|
1864
|
+
margin: 0 !important;
|
|
1864
1865
|
}
|
|
1865
1866
|
.p-multiselect-panel
|
|
1866
1867
|
.p-multiselect-header
|