Changeset 2069110
- Timestamp:
- 04/16/2019 04:08:01 AM (7 years ago)
- Location:
- go-gallery/tags/1.1
- Files:
-
- 3 edited
-
assets/css/effects.css (modified) (3 diffs)
-
assets/css/go-gallery.css (modified) (6 diffs)
-
go-gallery.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
go-gallery/tags/1.1/assets/css/effects.css
r2069104 r2069110 1 /* *1 /* 2 2 * <codeheader> 3 3 * <name>Go Gallery</name> 4 4 * <version>1.0</version> 5 5 * <description>Responsive filterable gallery plugin with media categories. Shortcode driven, easy to use, lightweight yet powerful. Display beautiful galleries without slowing down your page load.</description> 6 * <base>http s://ampae.com/go-gallery/</base>6 * <base>http://alvimedia.com/go-gallery-pro/</base> 7 7 * <author>V Bugroff</author> 8 8 * <email>bugroff@protonmail.com</email> 9 * <author>M Karodine</author>10 * <email>usr04@protonmail.com</email>11 * <author>Tim de Jong</author>12 * <author>AlViMedia</author>13 9 * <email>support@alvimedia.com</email> 14 * <author>AMPAE</author>15 10 * <email>info@ampae.com</email> 16 * <copyright file="LICENSE.txt" company="A MPAE">11 * <copyright file="LICENSE.txt" company="AlViMedia"> 17 12 * THIS CODE ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, 18 13 * INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR … … 21 16 * <date>2019-04-08</date> 22 17 * <summary> 23 * Main Styles for Go Gallery;18 * Main Effects for Go Gallery; 24 19 * </summary> 25 20 * </codeheader> 26 * */21 */ 27 22 28 /*---------------*/ 29 /***** Layla *****/ 30 /*---------------*/ 31 figure.effect-layla { 32 /* 33 background: #f00; 34 */ 23 24 figure.effect-basic-up figcaption::before { 25 position: absolute; 26 top: 0; 27 left: 0; 28 width: 100%; 29 height: 100%; 30 content: ''; 31 opacity: 0; 32 -webkit-transform: translate3d(0,50%,0); 33 transform: translate3d(0,50%,0); 35 34 } 36 35 37 figure.effect-layla img { 38 height: 390px; 36 figure.effect-basic-up h2 { 37 position: absolute; 38 top: 50%; 39 left: 0; 40 width: 100%; 41 color: #484c61; 42 -webkit-transition: -webkit-transform 0.35s, color 0.35s; 43 transition: transform 0.35s, color 0.35s; 44 -webkit-transform: translate3d(0,-50%,0); 45 transform: translate3d(0,-50%,0); 39 46 } 40 47 41 figure.effect-layla figcaption { 42 padding: 1em; 48 figure.effect-basic-up figcaption::before, 49 figure.effect-basic-up p { 50 -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; 51 transition: opacity 0.35s, transform 0.35s; 43 52 } 44 53 45 figure.effect-layla figcaption::before, 46 figure.effect-layla figcaption::after { 54 figure.effect-basic-up p { 47 55 position: absolute; 48 content: ''; 56 bottom: 0; 57 left: 0; 58 padding: 2em; 59 width: 100%; 49 60 opacity: 0; 61 -webkit-transform: translate3d(0,10px,0); 62 transform: translate3d(0,10px,0); 50 63 } 51 64 52 figure.effect-layla figcaption::before { 53 top: 50px; 54 right: 30px; 55 bottom: 50px; 56 left: 30px; 57 border-top: 1px solid #fff; 58 border-bottom: 1px solid #fff; 59 -webkit-transform: scale(0,1); 60 transform: scale(0,1); 61 -webkit-transform-origin: 0 0; 62 transform-origin: 0 0; 65 figure.effect-basic-up:hover h2 { 66 color: #fff; 67 -webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0); 68 transform: translate3d(0,-50%,0) translate3d(0,-40px,0); 63 69 } 64 70 65 figure.effect-layla figcaption::after { 66 top: 30px; 67 right: 50px; 68 bottom: 30px; 69 left: 50px; 70 border-right: 1px solid #fff; 71 border-left: 1px solid #fff; 72 -webkit-transform: scale(1,0); 73 transform: scale(1,0); 74 -webkit-transform-origin: 100% 0; 75 transform-origin: 100% 0; 76 } 77 78 figure.effect-layla h2 { 79 padding-top: 26%; 80 -webkit-transition: -webkit-transform 0.35s; 81 transition: transform 0.35s; 82 } 83 84 figure.effect-layla p { 85 padding: 0.5em 2em; 86 text-transform: none; 87 opacity: 0; 88 -webkit-transform: translate3d(0,-10px,0); 89 transform: translate3d(0,-10px,0); 90 } 91 92 figure.effect-layla h2 { 93 -webkit-transform: translate3d(0,-30px,0); 94 transform: translate3d(0,-30px,0); 95 } 96 97 figure.effect-layla figcaption::before, 98 figure.effect-layla figcaption::after, 99 figure.effect-layla p { 100 -webkit-transition: opacity 0.45s, -webkit-transform 0.45s; 101 transition: opacity 0.45s, transform 0.45s; 102 } 103 104 figure.effect-layla:hover figcaption::before, 105 figure.effect-layla:hover figcaption::after { 106 opacity: 1; 107 -webkit-transform: scale(1); 108 -moz-transform: scale(1); 109 -o-transform: scale(1); 110 -ms-transform: scale(1); 111 transform: scale(1); 112 } 113 114 figure.effect-layla:hover h2, 115 figure.effect-layla:hover p { 71 figure.effect-basic-up:hover figcaption::before , 72 figure.effect-basic-up:hover p { 116 73 opacity: 1; 117 74 -webkit-transform: translate3d(0,0,0); … … 119 76 } 120 77 121 figure.effect-layla:hover figcaption::after, 122 figure.effect-layla:hover h2, 123 figure.effect-layla:hover p, 124 figure.effect-layla:hover .image { 125 -webkit-transition-delay: 0.15s; 126 transition-delay: 0.15s; 78 figure.effect-square-small p { 79 -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; 80 transition: opacity 0.35s, transform 0.35s; 81 position: absolute; 82 bottom: 0; 83 left: 0; 84 margin: 20px; 85 padding: 30px; 86 border: 2px solid #fff; 87 text-transform: none; 88 font-size: 90%; 89 opacity: 0; 90 -webkit-transform: scale3d(0.8, 0.8, 1); 91 transform: scale3d(0.8, 0.8, 1); 92 -webkit-transform-origin: 50% -100%; 93 transform-origin: 50% -100%; 127 94 } 95 96 figure.effect-square-small h2 { 97 -webkit-transition: -webkit-transform 0.35s; 98 transition: transform 0.35s; 99 -webkit-transform: scale3d(0.8, 0.8, 1); 100 transform: scale3d(0.8, 0.8, 1); 101 -webkit-transform-origin: 50% 100%; 102 transform-origin: 50% 100%; 103 } 104 105 figure.effect-square-small:hover h2 { 106 opacity: 1; 107 -webkit-transform: scale3d(1, 1, 1); 108 transform: scale3d(1, 1, 1); 109 } 110 111 figure.effect-square-small:hover p { 112 opacity: 1; 113 -webkit-transform: scale3d(1, 1, 1); 114 transform: scale3d(1, 1, 1); 115 } 116 117 figure.effect-fat-side figcaption { 118 text-align: left; 119 } 120 121 figure.effect-fat-side h2 { 122 position: relative; 123 padding: 0.5em 0; 124 } 125 126 figure.effect-fat-side p { 127 display: inline-block; 128 margin: 0 0 0.25em; 129 padding: 0.4em 1em; 130 background: rgba(255, 255, 255, 0.9); 131 color: #2f3238 !important; 132 text-transform: none; 133 font-weight: 500; 134 font-size: 75%; 135 -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; 136 transition: opacity 0.35s, transform 0.35s; 137 -webkit-transform: translate3d(-360px, 0, 0); 138 transform: translate3d(-360px, 0, 0); 139 } 140 141 figure.effect-fat-side:hover p { 142 opacity: 1; 143 -webkit-transform: translate3d(0, 0, 0); 144 transform: translate3d(0, 0, 0); 145 } -
go-gallery/tags/1.1/assets/css/go-gallery.css
r2069104 r2069110 1 /* *1 /* 2 2 * <codeheader> 3 3 * <name>Go Gallery</name> 4 4 * <version>1.0</version> 5 5 * <description>Responsive filterable gallery plugin with media categories. Shortcode driven, easy to use, lightweight yet powerful. Display beautiful galleries without slowing down your page load.</description> 6 * <base>https://a mpae.com/go-gallery/</base>6 * <base>https://alvimedia.com/go-gallery/</base> 7 7 * <author>V Bugroff</author> 8 8 * <email>bugroff@protonmail.com</email> 9 * <author>M Karodine</author>10 * <email>usr04@protonmail.com</email>11 * <author>Tim de Jong</author>12 * <author>AlViMedia</author>13 9 * <email>support@alvimedia.com</email> 14 * <author>AMPAE</author>15 10 * <email>info@ampae.com</email> 16 * <copyright file="LICENSE.txt" company="A MPAE">11 * <copyright file="LICENSE.txt" company="AlViMedia"> 17 12 * THIS CODE ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, 18 13 * INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR … … 21 16 * <date>2019-04-08</date> 22 17 * <summary> 23 * Main Styles for Go Gallery;18 * Main Styles (less) for Go Gallery; 24 19 * </summary> 25 20 * </codeheader> 26 **/ 27 28 .go-gallery *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; } 29 .go-gallery.clearfix:before, .go-gallery.clearfix:after { display: table; content: ''; } 30 .go-gallery.clearfix:after { clear: both; } 21 */ 31 22 32 23 .go-gallery { 33 width: 100%; 34 zoom: 1; 35 overflow: auto; 36 padding:0; 37 margin:0; 38 margin: 0 auto; 39 } 24 width: 100%; 25 zoom: 1; 26 overflow: auto; 27 padding: 0; 28 margin: 0; 29 margin: 0 auto; 30 } 31 32 .go-gallery * { 33 -webkit-box-sizing: border-box; 34 box-sizing: border-box; 35 } 36 40 37 .go-gallery figure { 41 margin:0 !important; 42 /* 43 padding:0; 44 position: fixed; 45 46 */ 47 overflow: hidden; 48 } 49 50 51 .go-gallery.menu-left ul.go-gallery-filters { 52 text-align: left; 53 } 54 .go-gallery.menu-center ul.go-gallery-filters { 55 text-align: center; 56 } 57 .go-gallery.menu-right ul.go-gallery-filters { 58 text-align: right; 59 } 60 .go-gallery.menu-show ul.go-gallery-filters { 61 display: block; 62 } 38 margin: 0 !important; 39 overflow: hidden; 40 } 41 42 .go-gallery figure .image { 43 -webkit-transition: all 500ms; 44 -moz-transition: all 500ms; 45 -o-transition: all 500ms; 46 transition: all 500ms; 47 -webkit-transform: scale(1); 48 -moz-transform: scale(1); 49 -o-transform: scale(1); 50 -ms-transform: scale(1); 51 transform: scale(1); 52 } 53 54 .go-gallery figure:hover .image { 55 -webkit-transform: scale(1.1); 56 -moz-transform: scale(1.1); 57 -o-transform: scale(1.1); 58 -ms-transform: scale(1.1); 59 transform: scale(1.1); 60 } 61 63 62 .go-gallery ul.go-gallery-filters { 64 zoom: 1; 65 overflow: auto; 66 clear: both; 67 display: none; 68 padding: 20px; 69 } 63 zoom: 1; 64 overflow: auto; 65 clear: both; 66 display: none; 67 padding: 20px; 68 margin: 0; 69 padding: 0; 70 } 71 72 .go-gallery ul.go-gallery-filters li { 73 margin: 0; 74 padding: 0; 75 display: inline; 76 } 77 78 .go-gallery ul.go-gallery-filters li a { 79 display: inline-block; 80 background: #444; 81 color: #fff; 82 margin: 0 4px; 83 } 84 85 .go-gallery ul.go-gallery-filters li a:link { 86 text-decoration: none; 87 padding: 3px 8px; 88 } 89 90 .go-gallery ul.go-gallery-filters li a:hover { 91 text-decoration: none; 92 padding: 3px 8px; 93 } 94 95 .go-gallery ul.go-gallery-filters li a:visited { 96 text-decoration: none; 97 padding: 3px 8px; 98 } 99 100 .go-gallery ul.go-gallery-filters li a:active { 101 text-decoration: none; 102 padding: 3px 8px; 103 } 104 70 105 .go-gallery li:before { 71 display: none !important; 72 } 73 .go-gallery ul.go-gallery-filters, 74 .go-gallery ul.go-gallery-filters li { 75 margin: 0; 76 padding: 0; 77 } 78 .go-gallery ul.go-gallery-filters li { 79 display: inline; 80 } 81 .go-gallery ul.go-gallery-filters li a { 82 display: inline-block; 83 background: #444; 84 color: #fff; 85 margin: 0 4px; 86 } 87 .go-gallery ul.go-gallery-filters li a:link, 88 .go-gallery ul.go-gallery-filters li a:hover, 89 .go-gallery ul.go-gallery-filters li a:visited, 90 .go-gallery ul.go-gallery-filters li a:active { 91 text-decoration: none; 92 padding: 3px 8px; 93 } 94 106 display: none !important; 107 } 95 108 96 109 .go-gallery .go-gallery-list-wrapper { 97 display: block; 98 margin: 0 !important; 99 padding: 0 !important; 100 width: 100%; 101 overflow:hidden; 102 } 103 104 .go-gallery .go-gallery-list{ 105 display: block; 106 margin: 0; 107 padding: 0 !important; 108 } 109 110 .go-gallery .go-gallery-item { 111 } 112 113 .go-gallery.style-squared ul.go-gallery-list li.go-gallery-item figure { 114 width: 100%; 115 padding-top: 100%; 116 } 117 .go-gallery.style-squared ul.go-gallery-list li.go-gallery-item img { 118 display: none; 119 } 120 .go-gallery.style-squared ul.go-gallery-list li.go-gallery-item .image { 121 position: absolute; 122 left: 0; 123 top: 0; 124 width: 100%; 125 height: 100%; 126 background-position: center center; 127 background-size: cover; 128 } 129 130 /* 131 .go-gallery.style-normal ul.go-gallery-list li.go-gallery-item figure { 132 133 width: 100%; 134 height: 100%; 135 } 136 .go-gallery.style-normal ul.go-gallery-list li.go-gallery-item img { 137 visibility: hidden; 138 } 139 .go-gallery.style-normal ul.go-gallery-list li.go-gallery-item .image { 140 position: absolute; 141 left: 0; 142 top: 0; 143 width: 100%; 144 height: 100%; 145 background-position: center center; 146 background-size: cover; 147 } 148 */ 110 display: block; 111 margin: 0 !important; 112 padding: 0 !important; 113 width: 100%; 114 overflow: hidden; 115 } 116 117 .go-gallery .go-gallery-list { 118 display: block; 119 margin: 0; 120 padding: 0 !important; 121 } 149 122 150 123 .go-gallery ul.go-gallery-list { 151 zoom: 1; 152 overflow: auto; 153 overflow: hidden; 154 clear: both; 155 } 124 zoom: 1; 125 overflow: auto; 126 overflow: hidden; 127 clear: both; 128 } 129 156 130 .go-gallery ul.go-gallery-list li.go-gallery-item { 157 box-sizing: border-box; 158 width: 25%; 159 float: left; 160 cursor: pointer; 161 } 131 box-sizing: border-box; 132 width: 25%; 133 float: left; 134 cursor: pointer; 135 } 136 162 137 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap { 163 padding: 0; 164 background: #fff; 165 display: block; 166 box-sizing: border-box; 167 } 168 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:link, 169 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:hover, 170 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:visited, 138 padding: 0; 139 background: #fff; 140 display: block; 141 box-sizing: border-box; 142 } 143 144 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:link { 145 text-decoration: none !important; 146 border: none !important; 147 } 148 149 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:hover { 150 text-decoration: none !important; 151 border: none !important; 152 } 153 154 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:visited { 155 text-decoration: none !important; 156 border: none !important; 157 } 158 171 159 .go-gallery ul.go-gallery-list li.go-gallery-item .image-wrap:active { 172 text-decoration: none !important;173 border: none !important;160 text-decoration: none !important; 161 border: none !important; 174 162 } 175 163 176 164 .go-gallery ul.go-gallery-list li.go-gallery-item figure { 177 display: block; 178 position: relative; 179 overflow: hidden; 180 165 display: block; 166 position: relative; 167 overflow: hidden; 181 168 } 182 169 183 170 .go-gallery ul.go-gallery-list li.go-gallery-item img { 184 z-index: 1; 185 width: 100%; 186 max-width: 100%; 187 height: auto; 188 display: block; 189 border-radius: 0; 190 box-shadow: none; 191 } 171 -webkit-transition: all 500ms; 172 -moz-transition: all 500ms; 173 -o-transition: all 500ms; 174 transition: all 500ms; 175 -webkit-transform: scale(1); 176 -moz-transform: scale(1); 177 -o-transform: scale(1); 178 -ms-transform: scale(1); 179 transform: scale(1); 180 z-index: 1; 181 width: 100%; 182 max-width: 100%; 183 height: auto; 184 display: block; 185 border-radius: 0; 186 box-shadow: none; 187 } 188 189 .go-gallery ul.go-gallery-list li.go-gallery-item figcaption { 190 position: absolute; 191 z-index: 2; 192 top: 0; 193 left: 0; 194 width: 100%; 195 height: 100%; 196 } 197 192 198 .go-gallery ul.go-gallery-list li.go-gallery-item:hover img { 193 } 194 195 196 .go-gallery ul.go-gallery-list li.go-gallery-item figcaption { 197 position: absolute; 198 z-index: 2; 199 top: 0; 200 left: 0; 201 width: 100%; 202 height: 100%; 203 } 204 205 .go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item figcaption h2, 206 .go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item figcaption p { 207 display: none; 208 } 209 210 /* 211 --- 212 */ 213 214 215 .go-gallery figure .image { 216 -webkit-transition: all 500ms; 217 -moz-transition: all 500ms; 218 -o-transition: all 500ms; 219 transition: all 500ms; 220 -webkit-transform: scale(1); 221 -moz-transform: scale(1); 222 -o-transform: scale(1); 223 -ms-transform: scale(1); 224 transform: scale(1); 225 226 } 227 .go-gallery figure:hover .image { 228 /* 229 opacity: 0.7; 230 */ 231 -webkit-transform: scale(1.1); 232 -moz-transform: scale(1.1); 233 -o-transform: scale(1.1); 234 -ms-transform: scale(1.1); 235 transform: scale(1.1); 236 } 237 238 239 .go-gallery ul.go-gallery-list li.go-gallery-item:hover img { 240 /* 241 opacity: 0.7; 242 */ -webkit-transform: scale(1.1); 243 -moz-transform: scale(1.1); 244 -o-transform: scale(1.1); 245 -ms-transform: scale(1.1); 246 transform: scale(1.1); 247 } 248 249 .go-gallery ul.go-gallery-list li.go-gallery-item img { 250 -webkit-transition: all 500ms; 251 -moz-transition: all 500ms; 252 -o-transition: all 500ms; 253 transition: all 500ms; 254 -webkit-transform: scale(1); 255 -moz-transform: scale(1); 256 -o-transform: scale(1); 257 -ms-transform: scale(1); 258 transform: scale(1); 259 } 260 261 .go-gallery ul.go-gallery-list li.go-gallery-item img { 262 z-index: 1; 263 width: 100%; 264 max-width: 100%; 265 height: auto; 266 display: block; 267 border-radius: 0; 268 box-shadow: none; 269 } 270 271 /* 272 --- 273 */ 199 -webkit-transform: scale(1.1); 200 -moz-transform: scale(1.1); 201 -o-transform: scale(1.1); 202 -ms-transform: scale(1.1); 203 transform: scale(1.1); 204 } 274 205 275 206 .go-gallery .go-gallery-item { … … 280 211 text-align: center; 281 212 } 282 /* Common style */ 213 283 214 .go-gallery .go-gallery-item figure { 284 215 position: relative; 285 216 overflow: hidden; 286 287 217 text-align: center; 288 218 cursor: pointer; … … 300 230 backface-visibility: hidden; 301 231 font-family: 'Raleway', Arial, sans-serif; 302 } 303 304 .go-gallery .go-gallery-item figure figcaption::before, 232 position: absolute; 233 top: 0; 234 left: 0; 235 width: 100%; 236 height: 100%; 237 } 238 239 .go-gallery .go-gallery-item figure figcaption::before { 240 pointer-events: none; 241 } 242 305 243 .go-gallery .go-gallery-item figure figcaption::after { 306 244 pointer-events: none; 307 245 } 308 246 309 .go-gallery .go-gallery-item figure figcaption,310 247 .go-gallery .go-gallery-item figure figcaption > a { 311 248 position: absolute; … … 314 251 width: 100%; 315 252 height: 100%; 316 }317 318 319 /* Anchor will cover the whole item by default */320 .go-gallery .go-gallery-item figure figcaption > a {321 253 z-index: 1000; 322 254 text-indent: 200%; … … 330 262 font-size: 200%; 331 263 font-weight: 800; 332 } 333 334 .go-gallery .go-gallery-item figure h2, 264 margin: 0; 265 } 266 335 267 .go-gallery .go-gallery-item figure p { 336 268 margin: 0; 337 }338 339 .go-gallery .go-gallery-item figure p {340 269 letter-spacing: 1px; 341 270 font-size: 80%; 342 271 } 343 272 273 *:after { 274 -webkit-box-sizing: border-box; 275 box-sizing: border-box; 276 } 277 278 *:before { 279 -webkit-box-sizing: border-box; 280 box-sizing: border-box; 281 } 282 283 .go-gallery.clearfix:before { 284 display: table; 285 content: ''; 286 } 287 288 .go-gallery.clearfix:after { 289 display: table; 290 content: ''; 291 clear: both; 292 } 293 294 .go-gallery.menu-left ul.go-gallery-filters { 295 text-align: left; 296 } 297 298 .go-gallery.menu-center ul.go-gallery-filters { 299 text-align: center; 300 } 301 302 .go-gallery.menu-right ul.go-gallery-filters { 303 text-align: right; 304 } 305 306 .go-gallery.menu-show ul.go-gallery-filters { 307 display: block; 308 } 309 310 .go-gallery.style-squared ul.go-gallery-list li.go-gallery-item figure { 311 width: 100%; 312 padding-top: 100%; 313 } 314 315 .go-gallery.style-squared ul.go-gallery-list li.go-gallery-item img { 316 display: none; 317 } 318 319 .go-gallery.style-squared ul.go-gallery-list li.go-gallery-item .image { 320 position: absolute; 321 left: 0; 322 top: 0; 323 width: 100%; 324 height: 100%; 325 background-position: center center; 326 background-size: cover; 327 } 328 344 329 .go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item { 345 width: 12%; 330 width: 12%; 331 } 332 333 .go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item figcaption h2 { 334 display: none; 335 } 336 337 .go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item figcaption p { 338 display: none; 346 339 } 347 340 348 341 .go-gallery.size-small ul.go-gallery-list li.go-gallery-item { 349 width: 24.5%; 350 } 342 width: 24.5%; 343 } 344 351 345 .go-gallery.size-medium ul.go-gallery-list li.go-gallery-item { 352 width: 32.5%; 353 } 346 width: 32.5%; 347 } 348 354 349 .go-gallery.size-large ul.go-gallery-list li.go-gallery-item { 355 width: 49.5%; 356 } 357 350 width: 49.5%; 351 } 358 352 359 353 @media only screen and (max-width: 740px) { 360 div.go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item, 361 div.go-gallery.size-small ul.go-gallery-list li.go-gallery-item, 362 div.go-gallery.size-medium ul.go-gallery-list li.go-gallery-item, 363 div.go-gallery.size-large ul.go-gallery-list li.go-gallery-item { 364 font-size: 1em; 365 width: 50%; 366 } 367 } 354 div.go-gallery.size-tiny ul.go-gallery-list li.go-gallery-item { 355 font-size: 1em; 356 width: 50%; 357 } 358 359 div.go-gallery.size-small ul.go-gallery-list li.go-gallery-item { 360 font-size: 1em; 361 width: 50%; 362 } 363 364 div.go-gallery.size-medium ul.go-gallery-list li.go-gallery-item { 365 font-size: 1em; 366 width: 50%; 367 } 368 369 div.go-gallery.size-large ul.go-gallery-list li.go-gallery-item { 370 font-size: 1em; 371 width: 50%; 372 } 373 } -
go-gallery/tags/1.1/go-gallery.php
r2069104 r2069110 2 2 /** 3 3 * Plugin Name: Go Gallery 4 * Plugin URI: https:// wordpress.org/plugins/go-gallery/4 * Plugin URI: https://alvimedia.com/go-gallery/ 5 5 * Text Domain: gogomedia 6 6 * Description: Responsive filterable gallery with media categories. Easy to use, lightweight yet powerful shortcode driven gallery plugin to display beautiful galleries without slowing down your page.
Note: See TracChangeset
for help on using the changeset viewer.