keevo-components 2.0.116 → 2.0.118
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/esm2022/lib/components/kv-table/kv-table.component.mjs +2 -2
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +2 -2
- package/esm2022/lib/components/kv-timeline/kv-timeline.component.mjs +25 -23
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +30 -28
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/kv-table/kv-table.component.scss +7 -4
package/package.json
CHANGED
|
@@ -55,11 +55,12 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.icon-more {
|
|
58
|
-
font-weight:
|
|
58
|
+
font-weight: 500;
|
|
59
59
|
font-size: 1.4rem !important;
|
|
60
60
|
// color: #64748b;
|
|
61
61
|
color: rgb(var(--kv-color-system), .75);
|
|
62
62
|
transition: all 0.4s;
|
|
63
|
+
padding: 0.1rem !important;
|
|
63
64
|
}
|
|
64
65
|
|
|
65
66
|
.icon-more:hover,
|
|
@@ -218,9 +219,9 @@ input {
|
|
|
218
219
|
display: inline-block;
|
|
219
220
|
}
|
|
220
221
|
|
|
221
|
-
::ng-deep .p-menuitem-content {
|
|
222
|
-
|
|
223
|
-
}
|
|
222
|
+
// ::ng-deep .p-menuitem-content {
|
|
223
|
+
// padding: 0.5rem !important;
|
|
224
|
+
// }
|
|
224
225
|
|
|
225
226
|
:host ::ng-deep .p-disabled * {
|
|
226
227
|
pointer-events: auto !important;
|
|
@@ -229,8 +230,10 @@ input {
|
|
|
229
230
|
::ng-deep p-tieredmenusub .p-disabled *:active {
|
|
230
231
|
pointer-events: none !important;
|
|
231
232
|
font-size: 0.75rem !important;
|
|
233
|
+
padding: 0.5rem !important;
|
|
232
234
|
}
|
|
233
235
|
|
|
234
236
|
::ng-deep .p-tieredmenu .p-tieredmenu-root-list {
|
|
235
237
|
font-size: 0.75rem !important;
|
|
238
|
+
padding: 0.5rem !important;
|
|
236
239
|
}
|