@lucca-front/scss 18.2.0-rc.1 → 18.2.0-rc.2

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.
@@ -54,6 +54,7 @@
54
54
 
55
55
  // .mod-sortable is deprecated
56
56
  // .table-head-row-cell-sortableButton is deprecated
57
+ .indexTable-head-row-cell,
57
58
  .table-head-row-cell {
58
59
  &:not(:has(.tableSortable-arrows)) {
59
60
  &.mod-sortable,
@@ -73,10 +74,6 @@
73
74
  @include ascendingLegacy;
74
75
  }
75
76
 
76
- &:is([aria-sort]) {
77
- @include sortLegacy2;
78
- }
79
-
80
77
  &:is([aria-sort='descending']) {
81
78
  @include descendingLegacy2;
82
79
  }
@@ -13,14 +13,6 @@
13
13
  --components-sortable-offset: 0;
14
14
  }
15
15
 
16
- @mixin sortLegacy2 {
17
- padding: 0;
18
-
19
- .table-head-row-cell-sortableButton {
20
- padding: var(--components-table-padding);
21
- }
22
- }
23
-
24
16
  @mixin sortableLegacy {
25
17
  cursor: pointer;
26
18
 
@@ -30,7 +22,6 @@
30
22
  border-radius: var(--commons-borderRadius-M);
31
23
  opacity: 0;
32
24
  margin: 0;
33
- margin-left: var(--pr-t-spacings-50);
34
25
  transform: translateY(var(--pr-t-spacings-50));
35
26
  transition-duration: var(--commons-animations-durations-fast);
36
27
  transition-property: opacity, transform;
@@ -59,6 +50,14 @@
59
50
  @include reset.button;
60
51
 
61
52
  text-align: left;
53
+
54
+ .indexTable & {
55
+ display: flex;
56
+ }
57
+
58
+ &::after {
59
+ margin-left: var(--pr-t-spacings-50);
60
+ }
62
61
  }
63
62
  }
64
63