@annalib/anna-core 10.0.7 → 10.0.8
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 +4 -6
- package/fesm2015/annalib-anna-core.mjs +3 -5
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +3 -5
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_filters.scss +20 -3
package/package.json
CHANGED
|
@@ -134,7 +134,7 @@ div.radio-container {
|
|
|
134
134
|
background-color: $filterRadioContainer;
|
|
135
135
|
// padding: $fs-2 $fs-2 $fs-2 $fs-4;
|
|
136
136
|
border-radius: $fs-2;
|
|
137
|
-
margin:
|
|
137
|
+
margin: 0.4375rem $fs-7 $fs-4 $fs-7;
|
|
138
138
|
div{
|
|
139
139
|
flex: 1;
|
|
140
140
|
width: 50%;
|
|
@@ -178,12 +178,25 @@ div.radio-container {
|
|
|
178
178
|
|
|
179
179
|
.buttons-container {
|
|
180
180
|
display: flex;
|
|
181
|
-
margin: 0px auto
|
|
181
|
+
margin: 0px auto 0.4375rem;
|
|
182
182
|
justify-content: center;
|
|
183
|
+
|
|
184
|
+
.button{
|
|
185
|
+
padding: 0 10px;
|
|
186
|
+
margin: 8px 0 0 8px;
|
|
187
|
+
width: 106px;
|
|
188
|
+
text-overflow: ellipsis;
|
|
189
|
+
white-space: nowrap;
|
|
190
|
+
overflow: hidden;
|
|
191
|
+
}
|
|
192
|
+
|
|
183
193
|
button:last-of-type {
|
|
184
194
|
background-color: $primary-color;
|
|
185
195
|
color: white;
|
|
196
|
+
margin-left: 0.5rem;
|
|
197
|
+
margin-right: 0.5rem;
|
|
186
198
|
}
|
|
199
|
+
|
|
187
200
|
button.disabled {
|
|
188
201
|
background: $gray74;
|
|
189
202
|
opacity: 0.5;
|
|
@@ -490,7 +503,8 @@ button.filter-text-btn{
|
|
|
490
503
|
::ng-deep .non-edit-datepicker-tooltip .tooltip-inner{
|
|
491
504
|
max-width: 310px !important;
|
|
492
505
|
width: 283px !important;
|
|
493
|
-
overflow-y: initial !important;
|
|
506
|
+
overflow-y: initial !important;
|
|
507
|
+
padding: 0px !important;
|
|
494
508
|
}
|
|
495
509
|
|
|
496
510
|
|
|
@@ -529,14 +543,17 @@ input.error-border{
|
|
|
529
543
|
|
|
530
544
|
::ng-deep .non-edit-checkbox-tooltip .tooltip-inner{
|
|
531
545
|
width: 238px !important;
|
|
546
|
+
padding: 0px !important;
|
|
532
547
|
}
|
|
533
548
|
|
|
534
549
|
::ng-deep .non-edit-slider-tooltip .tooltip-inner{
|
|
535
550
|
width: 238px !important;
|
|
551
|
+
padding: 0px !important;
|
|
536
552
|
}
|
|
537
553
|
|
|
538
554
|
::ng-deep .non-edit-time-tooltip .tooltip-inner{
|
|
539
555
|
width: 250px !important;
|
|
556
|
+
padding: 0px !important;
|
|
540
557
|
}
|
|
541
558
|
|
|
542
559
|
::ng-deep .no-bottom-border{
|