@annalib/anna-core 11.2.31 → 11.2.32
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/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -3
- package/fesm2015/annalib-anna-core.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +1 -0
- package/src/lib/anna-common-scss/_filters.scss +26 -2
- package/src/lib/anna-common-scss/_generic-table-common.scss +1 -1
package/package.json
CHANGED
|
@@ -355,6 +355,12 @@ section.min-maxContainer {
|
|
|
355
355
|
background-color: white;
|
|
356
356
|
width: $fs-45;
|
|
357
357
|
}
|
|
358
|
+
|
|
359
|
+
input.numberInput:focus{
|
|
360
|
+
box-shadow: none;
|
|
361
|
+
border-color:#c2cfd6;
|
|
362
|
+
}
|
|
363
|
+
|
|
358
364
|
.dot {
|
|
359
365
|
color: #cbcbcb;
|
|
360
366
|
position: relative;
|
|
@@ -628,6 +634,7 @@ input.error-border{
|
|
|
628
634
|
|
|
629
635
|
::ng-deep .ngx-slider{
|
|
630
636
|
top: 10px !important;
|
|
637
|
+
margin: 5px 0 2px 0 !important;
|
|
631
638
|
}
|
|
632
639
|
|
|
633
640
|
::ng-deep .ngx-slider-animate{
|
|
@@ -635,10 +642,27 @@ input.error-border{
|
|
|
635
642
|
}
|
|
636
643
|
|
|
637
644
|
.sidebar-slider{
|
|
638
|
-
margin-bottom:
|
|
645
|
+
margin-bottom: 35px !important;
|
|
646
|
+
margin-left: 5px;
|
|
647
|
+
margin-right: 5px;
|
|
639
648
|
}
|
|
640
649
|
|
|
641
650
|
.slider-placeholder{
|
|
642
651
|
height: 14px
|
|
643
652
|
}
|
|
644
|
-
//end of slider css
|
|
653
|
+
//end of slider css
|
|
654
|
+
|
|
655
|
+
//DatePicker css
|
|
656
|
+
::ng-deep .filter-calendar{
|
|
657
|
+
|
|
658
|
+
select.form-select:focus{
|
|
659
|
+
border-color: rgb(194, 207, 214);
|
|
660
|
+
box-shadow: none;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
select.form-select{
|
|
664
|
+
background-color: white;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
}
|
|
668
|
+
|