wkjp-list-page 1.0.45 → 1.0.46
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/package.json
CHANGED
|
@@ -2573,4 +2573,36 @@ body.wkjp-column-dragging {
|
|
|
2573
2573
|
body.wkjp-column-dragging .column-config-panel__item--dragging {
|
|
2574
2574
|
visibility: hidden !important;
|
|
2575
2575
|
}
|
|
2576
|
+
.column-config-trigger {
|
|
2577
|
+
position: relative;
|
|
2578
|
+
&::after {
|
|
2579
|
+
content: "";
|
|
2580
|
+
position: absolute;
|
|
2581
|
+
top: 2px;
|
|
2582
|
+
right: 2px;
|
|
2583
|
+
width: 6px;
|
|
2584
|
+
height: 6px;
|
|
2585
|
+
border-radius: 50%;
|
|
2586
|
+
background: #f56c6c;
|
|
2587
|
+
animation: column-config-trigger-pulse 1.6s ease-out infinite;
|
|
2588
|
+
}
|
|
2589
|
+
&:hover,
|
|
2590
|
+
&.is-active {
|
|
2591
|
+
&::after {
|
|
2592
|
+
display: none;
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
@keyframes column-config-trigger-pulse {
|
|
2598
|
+
0% {
|
|
2599
|
+
box-shadow: 0 0 0 0 rgba(245, 108, 108, 0.5);
|
|
2600
|
+
}
|
|
2601
|
+
70% {
|
|
2602
|
+
box-shadow: 0 0 0 6px rgba(245, 108, 108, 0);
|
|
2603
|
+
}
|
|
2604
|
+
100% {
|
|
2605
|
+
box-shadow: 0 0 0 0 rgba(245, 108, 108, 0);
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2576
2608
|
</style>
|