PluginProbe
Responsive Lightbox & Gallery / 2.1
Responsive Lightbox & Gallery v2.1
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 All 105 releases
← All changes | css/gallery-basicmasonry.css +87 -1 trunk2.1 View file →
@@ -1 +1,87 @@
1 -.rl-basicmasonry-gallery{position:relative;z-index:2;display:block;margin:0 auto}.rl-basicmasonry-gallery a{border:none;outline:none}.rl-basicmasonry-gallery .rl-gallery-item img{display:block;max-width:100%!important;margin:0!important;height:auto}.rl-grid-hidden{position:fixed!important;z-index:1;top:0;left:0;width:100%;pointer-events:none;filter:"alpha(opacity=0)";opacity:0}.rl-grid-sizer{margin-bottom:0!important}.js .rl-grid-loading:before,.js .rl-grid-loading:after{content:"";z-index:1000}.js .rl-grid-loading .rl-gallery-item{visibility:hidden}.js .rl-grid-loading:before{position:absolute;top:0;left:0;width:100%;height:100%;min-height:100%}.js .rl-grid-loading:after{position:absolute;top:calc(25vh - 15px);left:50%;width:30px;height:30px;margin:0 0 0 -15px;border:4px solid #fff;border-bottom-color:#ccc;border-radius:50%;animation:animLoader .8s linear forwards infinite}.js .rl-gallery-item{visibility:visible}.rl-grid-deco{position:absolute;top:0;left:0;pointer-events:none}.rl-grid-deco path{fill:none;stroke:#0003;stroke-width:1px}.rl-grid-reveal{position:absolute;z-index:50;top:0;left:0;width:100%;height:100%;pointer-events:none;filter:"alpha(opacity=0)";opacity:0;background-color:#0003}
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 +}