PluginProbe ʕ •ᴥ•ʔ
Responsive Lightbox & Gallery / 2.3.1
Responsive Lightbox & Gallery v2.3.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 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 / assets / featherlight / featherlight.gallery.css
responsive-lightbox / assets / featherlight Last commit date
featherlight.css 5 years ago featherlight.gallery.css 5 years ago featherlight.gallery.js 5 years ago featherlight.gallery.min.css 5 years ago featherlight.gallery.min.js 5 years ago featherlight.js 5 years ago featherlight.min.css 5 years ago featherlight.min.js 5 years ago
featherlight.gallery.css
123 lines
1 /**
2 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
3 * Version 1.7.13 - http://noelboss.github.io/featherlight/
4 *
5 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
6 * MIT Licensed.
7 **/
8
9 .featherlight-next,
10 .featherlight-previous {
11 display: block;
12 position: absolute;
13 top: 25px;
14 right: 25px;
15 bottom: 0;
16 left: 80%;
17 cursor: pointer;
18 /* preventing text selection */
19 -webkit-touch-callout: none;
20 -webkit-user-select: none;
21 -khtml-user-select: none;
22 -moz-user-select: none;
23 -ms-user-select: none;
24 user-select: none;
25 /* IE9 hack, otherwise navigation doesn't appear */
26 background: rgba(0,0,0,0);
27 }
28
29 .featherlight-previous {
30 left: 25px;
31 right: 80%;
32 }
33
34 .featherlight-next:hover,
35 .featherlight-previous:hover {
36 background: rgba(255,255,255,0.25);
37 }
38
39
40 .featherlight-next span,
41 .featherlight-previous span {
42 display: none;
43 position: absolute;
44
45 top: 50%;
46 left: 5%;
47 width: 82%;
48
49 /* center horizontally */
50 text-align: center;
51
52 font-size: 80px;
53 line-height: 80px;
54
55 /* center vertically */
56 margin-top: -40px;
57
58 text-shadow: 0px 0px 5px #fff;
59 color: #fff;
60 font-style: normal;
61 font-weight: normal;
62 }
63 .featherlight-next span {
64 right: 5%;
65 left: auto;
66 }
67
68
69 .featherlight-next:hover span,
70 .featherlight-previous:hover span {
71 display: inline-block;
72 }
73
74 .featherlight-swipe-aware .featherlight-next,
75 .featherlight-swipe-aware .featherlight-previous {
76 display: none;
77 }
78
79 /* Hide navigation while loading */
80 .featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
81 display:none;
82 }
83
84 /* Hide navigation in case of single image */
85 .featherlight-first-slide.featherlight-last-slide .featherlight-previous,
86 .featherlight-first-slide.featherlight-last-slide .featherlight-next {
87 display:none;
88 }
89
90
91 /* Always display arrows on touch devices */
92 @media only screen and (max-device-width: 1024px){
93 .featherlight-next:hover,
94 .featherlight-previous:hover {
95 background: none;
96 }
97 .featherlight-next span,
98 .featherlight-previous span {
99 display: block;
100 }
101 }
102
103 /* handling phones and small screens */
104 @media only screen and (max-width: 1024px) {
105 .featherlight-next,
106 .featherlight-previous {
107 top: 10px;
108 right: 10px;
109 left: 85%;
110 }
111
112 .featherlight-previous {
113 left: 10px;
114 right: 85%;
115 }
116
117 .featherlight-next span,
118 .featherlight-previous span {
119 margin-top: -30px;
120 font-size: 40px;
121 }
122 }
123