playbook_ui 14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5738 → 14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobugzindextoken5751

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fc1642e15301ac5fecdafb78ad0d02de29c9dbbb26b3bc08760f2528ecd61c5
4
- data.tar.gz: 9fc96e2bc464ba755a7fbcedb891829e390d557d04da9e37cd51e607737c95b9
3
+ metadata.gz: e10c1e4e4545b2a4d2d9efad06fb1a7313d20f051aebbe16ea6ae9938a51b05d
4
+ data.tar.gz: bb6f95cda4e9045dd17ba5832ff0754831bbfdfb40e7d2446b6900da742ea8ae
5
5
  SHA512:
6
- metadata.gz: a1bc8cd947d1555876f16312bf9ca8c81b79bfb44f2d5f5bf5f8a968faf0081252cc8be904e77f8935fd175cdea7bc47d7dcfad2f4fc07915edff5f4f7287088
7
- data.tar.gz: d7ed7ae200c1b5c09e5aac2f39a945060fc3f9a7f997bc083854bd94d6a062f12ed865abfd8f82c631118020f2c4ef1222a237663595fa0ce72aa8e3881c9acb
6
+ metadata.gz: cecb8ddd5a22de23262c27e2d5dd8e58c7b11c182504dd3e47fc5d1a0fdaff32de45ad9c254ecddd772674dea34aec612a5ab286992f257c82b7fc8d96af70e1
7
+ data.tar.gz: 6ceb08be13792f050c55662c2554f7afd3f5d2abcee774130c9361607337e9a585e88f75a606de1c5c5af8ce2bbaa0bf36d48f6ddbfbf310e542469d489b66e3
@@ -5,7 +5,6 @@ examples:
5
5
  - fixed_confirmation_toast_multi_line: Multi Line
6
6
  - fixed_confirmation_toast_close: Click to Close
7
7
  - fixed_confirmation_toast_positions: Click to Show Positions
8
- - fixed_confirmation_toast_auto_close: Click to Show Auto Close
9
8
  - fixed_confirmation_toast_children: Children
10
9
  - fixed_confirmation_toast_custom_icon: Custom Icon
11
10
 
@@ -32,4 +32,4 @@ export default class PbFixedConfirmationToast extends PbEnhancedElement {
32
32
  }, autoCloseIntValue)
33
33
  }
34
34
  }
35
- }
35
+ }
@@ -2,6 +2,7 @@
2
2
  @import "../tokens/screen_sizes";
3
3
 
4
4
  $slides-margin: $space-md;
5
+ $lightbox-z-index-floor: $z_10 !default;
5
6
 
6
7
  .carousel {
7
8
 
@@ -13,7 +14,7 @@ $slides-margin: $space-md;
13
14
  top: 0;
14
15
  left: 0;
15
16
  right: 0;
16
- z-index: 9999999;
17
+ z-index: $lightbox-z-index-floor + 99;
17
18
  align-items: center;
18
19
  transition: all .5s;
19
20
 
@@ -55,7 +56,7 @@ $slides-margin: $space-md;
55
56
  justify-content: space-between;
56
57
  flex-direction: column;
57
58
  background-color: black;
58
- z-index: 1;
59
+ z-index: $lightbox-z-index-floor + 1;
59
60
  overflow: hidden;
60
61
  }
61
62
 
@@ -63,7 +64,7 @@ $slides-margin: $space-md;
63
64
  display: flex;
64
65
  height: calc(100% - 120px);
65
66
  width: 100%;
66
- z-index: 1;
67
+ z-index: $lightbox-z-index-floor + 1;
67
68
 
68
69
  [class^="react-transform-wrapper"] {
69
70
  flex-shrink: 0;
@@ -87,7 +88,7 @@ $slides-margin: $space-md;
87
88
  .carousel-arrow-left {
88
89
  display: block;
89
90
  position: absolute;
90
- z-index: 4;
91
+ z-index: $lightbox-z-index-floor + 4;
91
92
  top: 50%;
92
93
  @media only screen and (max-width: $screen-xs-max) {
93
94
  display: none;
@@ -97,7 +98,7 @@ $slides-margin: $space-md;
97
98
  .carousel-arrow-right {
98
99
  display: block;
99
100
  position: absolute;
100
- z-index: 4;
101
+ z-index: $lightbox-z-index-floor + 4;
101
102
  top: 50%;
102
103
  right: 0;
103
104
  @media only screen and (max-width: $screen-xs-max) {
@@ -140,7 +141,7 @@ $slides-margin: $space-md;
140
141
  width: 100vw;
141
142
  padding: 3px;
142
143
  overflow: scroll;
143
- z-index: 20;
144
+ z-index: $lightbox-z-index-floor + 20;
144
145
  &.centered {
145
146
  justify-content: center;
146
147
  }