@agorapulse/ui-theme 20.1.15 → 20.1.17
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.
|
Binary file
|
package/assets/style/_table.scss
CHANGED
|
@@ -26,7 +26,7 @@ $cell-height-small: 40px;
|
|
|
26
26
|
height: calc(100% - $cell-height);
|
|
27
27
|
max-height: calc(100% - $cell-height);
|
|
28
28
|
width: 100%;
|
|
29
|
-
overflow-y:
|
|
29
|
+
overflow-y: auto;
|
|
30
30
|
border-radius: var(--ref-border-radius-md);
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -39,22 +39,25 @@ $cell-height-small: 40px;
|
|
|
39
39
|
tr[cdk-row] {
|
|
40
40
|
background-color: var(--ref-color-white);
|
|
41
41
|
|
|
42
|
+
&.selected {
|
|
43
|
+
background-color: var(--ref-color-soft-blue-10);
|
|
44
|
+
}
|
|
45
|
+
|
|
42
46
|
&:last-child {
|
|
43
47
|
td[cdk-cell] {
|
|
44
48
|
border-bottom: none;
|
|
45
49
|
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
46
52
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
td[cdk-cell]:last-child {
|
|
52
|
-
border-bottom-right-radius: var(--ref-border-radius-md);
|
|
53
|
-
}
|
|
53
|
+
// Apply border radius to last row only when table has no footer
|
|
54
|
+
&:not(:has(tfoot > .cdk-footer-row)) tr[cdk-row]:last-child {
|
|
55
|
+
td[cdk-cell]:first-child {
|
|
56
|
+
border-bottom-left-radius: var(--ref-border-radius-md);
|
|
54
57
|
}
|
|
55
58
|
|
|
56
|
-
|
|
57
|
-
|
|
59
|
+
td[cdk-cell]:last-child {
|
|
60
|
+
border-bottom-right-radius: var(--ref-border-radius-md);
|
|
58
61
|
}
|
|
59
62
|
}
|
|
60
63
|
|
|
@@ -239,6 +242,14 @@ $cell-height-small: 40px;
|
|
|
239
242
|
width: $cell-height;
|
|
240
243
|
text-align: center;
|
|
241
244
|
}
|
|
245
|
+
|
|
246
|
+
&:first-child {
|
|
247
|
+
border-bottom-left-radius: var(--ref-border-radius-md);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&:last-child {
|
|
251
|
+
border-bottom-right-radius: var(--ref-border-radius-md);
|
|
252
|
+
}
|
|
242
253
|
}
|
|
243
254
|
|
|
244
255
|
// ========================================================================
|
|
@@ -20,6 +20,25 @@
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
&.ap-predefined-tooltip {
|
|
24
|
+
max-width: 256px;
|
|
25
|
+
width: 256px;
|
|
26
|
+
max-height: 280px;
|
|
27
|
+
border-radius: var(--ref-border-radius-sm);
|
|
28
|
+
background: var(--ref-color-white);
|
|
29
|
+
|
|
30
|
+
/* Shadow/Low (default) */
|
|
31
|
+
box-shadow: 0 4px 25px -2px rgba(52, 69, 99, 0.15), 0 4px 6px -2px rgba(52, 69, 99, 0.15);
|
|
32
|
+
|
|
33
|
+
.ap-content-container.ap-content-predefined-container {
|
|
34
|
+
padding: 0;
|
|
35
|
+
|
|
36
|
+
.ap-tooltip-arrow {
|
|
37
|
+
color: var(--ref-color-white);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
23
42
|
.ap-content-container {
|
|
24
43
|
padding: var(--ref-spacing-xxs) var(--ref-spacing-xs);
|
|
25
44
|
border-radius: var(--ref-border-radius-md);
|