@vectoriox/iox-builder 1.4.11 → 1.4.12

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.
@@ -1728,6 +1728,12 @@ class StyleRegistryService {
1728
1728
  // { position: relative }) has higher specificity than .iox-node-{id} and would
1729
1729
  // silently win — putting position on the outer class bypasses that entirely.
1730
1730
  'position',
1731
+ // top/right/bottom/left and zIndex are positioning co-ordinates — they only
1732
+ // work on the SAME element that carries the position property (the outer
1733
+ // wrapper). Putting them on the inner element (iox-node-{id}) would apply them
1734
+ // to the inner's position:relative context, not to the fixed/absolute outer.
1735
+ 'top', 'right', 'bottom', 'left',
1736
+ 'zIndex',
1731
1737
  ]); }
1732
1738
  init() {
1733
1739
  this.styleEl = document.createElement('style');