PluginProbe ʕ •ᴥ•ʔ
Responsive Lightbox & Gallery / 2.4.9
Responsive Lightbox & Gallery v2.4.9
2.7.8 trunk 1.0.0 1.0.1 1.0.1.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.4.0 1.4.0.1 1.4.1 1.4.11 1.4.12 1.4.13 1.4.14 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.1 1.6.10 1.6.11 1.6.12 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.3.1 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.6.0 2.6.1 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7
responsive-lightbox / css / gallery-basicmasonry.css
responsive-lightbox / css Last commit date
admin-folders.css 1 year ago admin-galleries.css 1 year ago admin-gallery.css 1 year ago admin-plugins.css 1 year ago admin.css 1 year ago gallery-basicgrid.css 8 years ago gallery-basicmasonry.css 8 years ago gallery.css 1 year ago gutenberg.min.css 4 years ago
gallery-basicmasonry.css
87 lines
1 .rl-basicmasonry-gallery {
2 position: relative;
3 z-index: 2;
4 display: block;
5 margin: 0 auto;
6 }
7 .rl-grid-hidden {
8 position: fixed !important;
9 z-index: 1;
10 top: 0;
11 left: 0;
12 width: 100%;
13 pointer-events: none;
14 opacity: 0;
15 }
16 .rl-basicmasonry-gallery a,
17 .rl-basicmasonry-gallery a {
18 border: none;
19 outline: none;
20 }
21 .rl-basicmasonry-gallery .rl-gallery-item img {
22 display: block;
23 max-width: 100% !important;
24 margin: 0 !important;
25 height: auto;
26 }
27 .rl-grid-sizer {
28 margin-bottom: 0 !important;
29 }
30 .js .rl-grid-loading::before,
31 .js .rl-grid-loading::after {
32 content: '';
33 z-index: 1000;
34 }
35 .js .rl-gallery-item {
36 visibility: visible;
37 }
38 .js .rl-grid-loading .rl-gallery-item {
39 visibility: hidden;
40 }
41 .js .rl-grid-loading::before {
42 position: absolute;
43 top: 0;
44 left: 0;
45 width: 100%;
46 height: 100%;
47 min-height: 100%;
48 }
49 .js .rl-grid-loading::after {
50 position: absolute;
51 top: calc(25vh - 15px);
52 left: 50%;
53 width: 30px;
54 height: 30px;
55 margin: 0 0 0 -15px;
56 border: 4px solid #fff;
57 border-bottom-color: #ccc;
58 border-radius: 50%;
59 animation: animLoader 0.8s linear forwards infinite;
60 }
61 .rl-grid-deco {
62 position: absolute;
63 top: 0;
64 left: 0;
65 pointer-events: none;
66 }
67
68 .rl-grid-deco path {
69 fill: none;
70 stroke: rgba(0,0,0,0.2);
71 stroke-width: 1px;
72 }
73
74 .rl-grid-reveal {
75 position: absolute;
76 z-index: 50;
77 top: 0;
78 left: 0;
79 width: 100%;
80 height: 100%;
81 pointer-events: none;
82 opacity: 0;
83 background-color: rgba(0,0,0,0.2);
84 }
85 @keyframes animLoader {
86 to { transform: rotate(360deg); }
87 }