@annalib/anna-core 31.4.38 → 31.4.39
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/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -3
- package/fesm2022/annalib-anna-core.mjs +2 -2
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_generic-tooltip-html.scss +7 -12
package/package.json
CHANGED
|
@@ -36,17 +36,9 @@
|
|
|
36
36
|
@include fonts(Roboto, $fs-11, normal, 700, normal, normal, 0.3px);
|
|
37
37
|
color: $charcoal;
|
|
38
38
|
margin-bottom: 0;
|
|
39
|
-
box-shadow:
|
|
40
|
-
|
|
41
|
-
inset
|
|
42
|
-
inset -1px 0px 0px 0px $lightGray-4;
|
|
43
|
-
|
|
44
|
-
&:first-of-type {
|
|
45
|
-
box-shadow:
|
|
46
|
-
inset 0 1px $lightGray-4,
|
|
47
|
-
inset 0 -1px $lightGray-4,
|
|
48
|
-
inset -1px 0 $lightGray-4 !important;
|
|
49
|
-
border-left: 1px solid $lightGray-4;
|
|
39
|
+
box-shadow: inset 1px -1px #d4d4d4, inset 0px 1px #d4d4d4;
|
|
40
|
+
&:last-of-type {
|
|
41
|
+
box-shadow: inset 1px -1px #d4d4d4, inset -1px 1px #d4d4d4 !important;
|
|
50
42
|
}
|
|
51
43
|
}
|
|
52
44
|
}
|
|
@@ -54,11 +46,14 @@
|
|
|
54
46
|
tbody {
|
|
55
47
|
tr {
|
|
56
48
|
td {
|
|
57
|
-
border: 1px solid $lightGray-4;
|
|
58
49
|
padding: 3px 8px;
|
|
59
50
|
width: 100%;
|
|
60
51
|
color: #000;
|
|
61
52
|
@include fonts(Roboto, $fs-12, normal, normal, normal, normal, 0px);
|
|
53
|
+
box-shadow: inset 1px -1px #d4d4d4;
|
|
54
|
+
&:last-of-type {
|
|
55
|
+
box-shadow: inset 1px -1px #d4d4d4, inset -1px 0px #d4d4d4;
|
|
56
|
+
}
|
|
62
57
|
}
|
|
63
58
|
&:first-of-type td {
|
|
64
59
|
border-top: none;
|