@wizishop/img-manager 0.2.77 → 0.2.81
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.
- package/assets/i18n/en.json +1 -1
- package/bundles/wizishop-img-manager.umd.js +40 -5
- package/bundles/wizishop-img-manager.umd.js.map +1 -1
- package/bundles/wizishop-img-manager.umd.min.js +2 -2
- package/bundles/wizishop-img-manager.umd.min.js.map +1 -1
- package/esm2015/lib/components/images-view/images-view.component.js +11 -3
- package/esm2015/lib/components/images-view/mosaic-view/img-card/img-card.component.js +10 -2
- package/esm2015/lib/components/images-view/mosaic-view/mosaic-view.component.js +11 -3
- package/esm2015/lib/components/img-tabs/img-tabs.component.js +10 -2
- package/esm2015/lib/wz-img-manager.component.js +5 -2
- package/esm5/lib/components/images-view/images-view.component.js +11 -3
- package/esm5/lib/components/images-view/mosaic-view/img-card/img-card.component.js +10 -2
- package/esm5/lib/components/images-view/mosaic-view/mosaic-view.component.js +11 -3
- package/esm5/lib/components/img-tabs/img-tabs.component.js +10 -2
- package/esm5/lib/wz-img-manager.component.js +5 -2
- package/fesm2015/wizishop-img-manager.js +40 -5
- package/fesm2015/wizishop-img-manager.js.map +1 -1
- package/fesm5/wizishop-img-manager.js +40 -5
- package/fesm5/wizishop-img-manager.js.map +1 -1
- package/lib/components/images-view/images-view.component.d.ts +3 -1
- package/lib/components/images-view/mosaic-view/img-card/img-card.component.d.ts +2 -0
- package/lib/components/images-view/mosaic-view/mosaic-view.component.d.ts +3 -1
- package/lib/components/img-tabs/img-tabs.component.d.ts +2 -0
- package/lib/wz-img-manager.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-img-manager-0.2.81.tgz +0 -0
- package/wizishop-img-manager.metadata.json +1 -1
- package/wz-img-manager.scss +19 -2
- package/wizishop-img-manager-0.2.77.tgz +0 -0
package/wz-img-manager.scss
CHANGED
|
@@ -2413,6 +2413,14 @@ $green-color: #2ecc71;
|
|
|
2413
2413
|
}
|
|
2414
2414
|
}
|
|
2415
2415
|
}
|
|
2416
|
+
|
|
2417
|
+
.mosaic__container__cards {
|
|
2418
|
+
z-index: 1;
|
|
2419
|
+
& + .mosaic__pagination {
|
|
2420
|
+
position: relative;
|
|
2421
|
+
z-index: 2;
|
|
2422
|
+
}
|
|
2423
|
+
}
|
|
2416
2424
|
$card-img-size: 100%;
|
|
2417
2425
|
$card-img-size-small: 140px;
|
|
2418
2426
|
|
|
@@ -2516,6 +2524,15 @@ $card-img-size-small: 140px;
|
|
|
2516
2524
|
opacity: 0;
|
|
2517
2525
|
transition: .3s ease;
|
|
2518
2526
|
|
|
2527
|
+
&--small {
|
|
2528
|
+
.show-edit {
|
|
2529
|
+
transition: .3s ease!important;
|
|
2530
|
+
&:hover, &:focus {
|
|
2531
|
+
background-color: darken(#1E2E43, 15%) !important;
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2519
2536
|
button {
|
|
2520
2537
|
box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
|
|
2521
2538
|
margin: 0;
|
|
@@ -2579,7 +2596,7 @@ $card-img-size-small: 140px;
|
|
|
2579
2596
|
&:not(:last-child) {
|
|
2580
2597
|
margin: 0 0 5px;
|
|
2581
2598
|
}
|
|
2582
|
-
&.size {
|
|
2599
|
+
&.size, &.show-edit {
|
|
2583
2600
|
background-color: #1E2E43;
|
|
2584
2601
|
transition: transform .3s ease .6s;
|
|
2585
2602
|
span, &:before {
|
|
@@ -2623,7 +2640,7 @@ $card-img-size-small: 140px;
|
|
|
2623
2640
|
color: $img-bleu-color;
|
|
2624
2641
|
}
|
|
2625
2642
|
}
|
|
2626
|
-
&:hover, &:focus {
|
|
2643
|
+
&:hover, &:focus, &.show-instant {
|
|
2627
2644
|
border-radius: 3px 0 0 3px;
|
|
2628
2645
|
&:before {
|
|
2629
2646
|
border-radius: 3px 0 0 3px;
|
|
Binary file
|