PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 1.3.5
FrontBlocks for Gutenberg/GeneratePress v1.3.5
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / assets / carousel / frontblocks-carousel-editor.css
frontblocks / assets / carousel Last commit date
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