frontblocks-advanced-option.js
1 month ago
frontblocks-advanced-option.jsx
1 month ago
frontblocks-carousel-editor.css
4 months ago
frontblocks-carousel.css
1 month ago
frontblocks-carousel.js
1 month ago
glide.min.js
8 months ago
frontblocks-carousel-editor.css
29 lines
| 1 | /* Editor-only carousel preview styles */ |
| 2 | |
| 3 | /* Hide the native scrollbar on the carousel grid element */ |
| 4 | .frbl-carousel-noscrollbar { |
| 5 | scrollbar-width: none; |
| 6 | -ms-overflow-style: none; |
| 7 | } |
| 8 | .frbl-carousel-noscrollbar::-webkit-scrollbar { |
| 9 | display: none; |
| 10 | } |
| 11 | |
| 12 | /* Navigation arrows – rendered in the outer document body as position:fixed */ |
| 13 | .frbl-editor-arrow { |
| 14 | width: 32px; |
| 15 | height: 32px; |
| 16 | border-radius: 50%; |
| 17 | border: none; |
| 18 | cursor: pointer; |
| 19 | display: flex; |
| 20 | align-items: center; |
| 21 | justify-content: center; |
| 22 | padding: 0; |
| 23 | transition: opacity 0.2s; |
| 24 | } |
| 25 | |
| 26 | .frbl-editor-arrow:hover { |
| 27 | opacity: 0.8; |
| 28 | } |
| 29 |