| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .lsx :global {
- // workaround
- // https://stackoverflow.com/a/57667536
- .lsx-blink {
- & :local {
- animation: lsx-fade-in 1s ease 0s infinite alternate;
- }
- }
- .lsx-load-more-row {
- opacity: .5;
- .start-items-label {
- display: none;
- }
- .btn-load-more {
- border-right-style: hidden;
- border-bottom-style: hidden;
- border-left-style: hidden;
- border-radius: 0;
- }
- }
- .lsx-load-more-row:hover {
- opacity: 1;
- .start-items-label {
- display: inline;
- }
- .btn-load-more {
- border-style: solid;
- }
- }
- .lsx-load-more-container {
- max-width: 250px;
- border-top: 1px black;
- }
- }
- @keyframes lsx-fade-in {
- 0% {
- opacity: 0.2;
- }
- 100% {
- opacity: 0.9;
- }
- }
|