@wizishop/wizi-block 15.0.95-beta → 15.0.97-beta

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/wizi-block.scss +47 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/wizi-block",
3
- "version": "15.0.95-beta",
3
+ "version": "15.0.97-beta",
4
4
  "description": "## To use WiziBlock, you have to :",
5
5
  "repository": {
6
6
  "type": "git",
package/wizi-block.scss CHANGED
@@ -6267,6 +6267,8 @@ $color-bd: #dddddd;
6267
6267
  @include justify-content(space-between);
6268
6268
 
6269
6269
  &__item {
6270
+ position: relative;
6271
+ z-index: 1;
6270
6272
  width: calc(25% - 23px);
6271
6273
 
6272
6274
  &:focus-within {
@@ -7575,6 +7577,10 @@ $color-bd: #dddddd;
7575
7577
  margin-bottom: 20px;
7576
7578
  z-index: 2;
7577
7579
  position: relative;
7580
+
7581
+ &:focus-within {
7582
+ z-index: 10;
7583
+ }
7578
7584
  }
7579
7585
 
7580
7586
  &__wrapper {
@@ -7585,6 +7591,10 @@ $color-bd: #dddddd;
7585
7591
  @include flex-wrap(wrap);
7586
7592
  justify-content: flex-start;
7587
7593
 
7594
+ &:focus-within {
7595
+ z-index: 10;
7596
+ }
7597
+
7588
7598
  .width0 {
7589
7599
  max-width: 0;
7590
7600
  }
@@ -7592,11 +7602,16 @@ $color-bd: #dddddd;
7592
7602
  &__item {
7593
7603
  width: calc(50% - 40px);
7594
7604
  position: relative;
7605
+ z-index: 1;
7595
7606
 
7596
7607
  &:last-child {
7597
7608
  margin: 0 0 0 80px;
7598
7609
  }
7599
7610
 
7611
+ &:focus-within {
7612
+ z-index: 10;
7613
+ }
7614
+
7600
7615
  .wb-structure-config__content {
7601
7616
  overflow-y: scroll;
7602
7617
  }
@@ -7787,6 +7802,7 @@ $color-bd: #dddddd;
7787
7802
  position: relative;
7788
7803
  margin-top: 15px;
7789
7804
  min-height: 50px;
7805
+ z-index: 1;
7790
7806
 
7791
7807
  &:focus-within {
7792
7808
  z-index: 9999;
@@ -7800,6 +7816,7 @@ $color-bd: #dddddd;
7800
7816
  margin-top: -10px;
7801
7817
  width: 100%;
7802
7818
  min-height: 50px;
7819
+ z-index: 1;
7803
7820
 
7804
7821
  &:focus-within {
7805
7822
  z-index: 9999;
@@ -10738,10 +10755,14 @@ $color-size-choose: #6c6c6c;
10738
10755
  width: 100%;
10739
10756
 
10740
10757
  > div {
10741
- &:first-child {
10742
- position: relative;
10758
+ position: relative;
10759
+ z-index: 1;
10760
+
10761
+ &:focus-within {
10743
10762
  z-index: 10;
10763
+ }
10744
10764
 
10765
+ &:first-child {
10745
10766
  .ql-editor {
10746
10767
  padding-bottom: 0;
10747
10768
  }
@@ -19355,6 +19376,15 @@ $color-bd: #dddddd;
19355
19376
  @include flexbox();
19356
19377
  @include flex-direction(column);
19357
19378
 
19379
+ & > div {
19380
+ position: relative;
19381
+ z-index: 1;
19382
+
19383
+ &:focus-within {
19384
+ z-index: 10;
19385
+ }
19386
+ }
19387
+
19358
19388
  &__img {
19359
19389
  @include flexbox();
19360
19390
  @include justify-content(center);
@@ -23222,11 +23252,12 @@ $color-size-choose: #6c6c6c;
23222
23252
  }
23223
23253
 
23224
23254
  > div > div {
23255
+ position: relative;
23256
+ z-index: 1;
23225
23257
  background-color: rgba(0, 0, 0, 0.15);
23226
23258
  width: 100%;
23227
23259
 
23228
- &:first-child {
23229
- position: relative;
23260
+ &:focus-within {
23230
23261
  z-index: 10;
23231
23262
  }
23232
23263
  }
@@ -23339,14 +23370,18 @@ $color-size-choose: #6c6c6c;
23339
23370
  }
23340
23371
 
23341
23372
  > div > div {
23373
+ position: relative;
23374
+ z-index: 1;
23342
23375
  background-color: $wb-white;
23343
23376
  width: 50%;
23344
23377
  margin-left: rem(40);
23345
23378
  box-sizing: border-box;
23346
23379
 
23347
- &:first-child {
23348
- position: relative;
23380
+ &:focus-within {
23349
23381
  z-index: 10;
23382
+ }
23383
+
23384
+ &:first-child {
23350
23385
  padding: rem(15) rem(30) 1px;
23351
23386
  }
23352
23387
 
@@ -23483,17 +23518,21 @@ $color-size-choose: #6c6c6c;
23483
23518
  }
23484
23519
 
23485
23520
  > div > div {
23521
+ position: relative;
23522
+ z-index: 1;
23486
23523
  width: 100%;
23487
23524
  margin-left: 0;
23488
23525
  box-sizing: border-box;
23489
23526
 
23527
+ &:focus-within {
23528
+ z-index: 10;
23529
+ }
23530
+
23490
23531
  &.has-transparent-background {
23491
23532
  background-color: transparent;
23492
23533
  }
23493
23534
 
23494
23535
  &:first-child {
23495
- position: relative;
23496
- z-index: 10;
23497
23536
  padding: rem(15) rem(30) 0;
23498
23537
  }
23499
23538