admin-folders.css
7 years ago
admin-galleries.css
7 years ago
admin-post.css
7 years ago
admin.css
7 years ago
gallery-basicgrid.css
7 years ago
gallery-basicmasonry.css
7 years ago
gallery.css
7 years ago
admin-galleries.css
461 lines
| 1 | /* Font */ |
| 2 | @font-face { |
| 3 | font-family: 'responsive-lightbox'; |
| 4 | src: url('../font/responsive-lightbox.eot?86939755'); |
| 5 | src: url('../font/responsive-lightbox.eot?86939755#iefix') format('embedded-opentype'), |
| 6 | url('../font/responsive-lightbox.woff2?86939755') format('woff2'), |
| 7 | url('../font/responsive-lightbox.woff?86939755') format('woff'), |
| 8 | url('../font/responsive-lightbox.ttf?86939755') format('truetype'), |
| 9 | url('../font/responsive-lightbox.svg?86939755#responsive-lightbox') format('svg'); |
| 10 | font-weight: normal; |
| 11 | font-style: normal; |
| 12 | } |
| 13 | /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ |
| 14 | /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ |
| 15 | /* |
| 16 | @media screen and (-webkit-min-device-pixel-ratio:0) { |
| 17 | @font-face { |
| 18 | font-family: 'responsive-lightbox'; |
| 19 | src: url('../font/responsive-lightbox.svg?86939755#responsive-lightbox') format('svg'); |
| 20 | } |
| 21 | } |
| 22 | */ |
| 23 | |
| 24 | .rl-design-options-show_icon { |
| 25 | padding-right: 15px; |
| 26 | } |
| 27 | .rl-design-options-show_icon:after { |
| 28 | font-family: "responsive-lightbox"; |
| 29 | font-style: normal; |
| 30 | font-weight: normal; |
| 31 | speak: none; |
| 32 | |
| 33 | display: inline-block; |
| 34 | text-decoration: inherit; |
| 35 | width: 1em; |
| 36 | text-align: center; |
| 37 | /* opacity: .8; */ |
| 38 | |
| 39 | /* For safety - reset parent styles, that can break glyph codes*/ |
| 40 | font-variant: normal; |
| 41 | text-transform: none; |
| 42 | |
| 43 | /* fix buttons height, for twitter bootstrap */ |
| 44 | line-height: 1em; |
| 45 | |
| 46 | /* you can be more comfortable with increased icons size */ |
| 47 | /* font-size: 120%; */ |
| 48 | |
| 49 | /* Font smoothing. That was taken from TWBS */ |
| 50 | -webkit-font-smoothing: antialiased; |
| 51 | -moz-osx-font-smoothing: grayscale; |
| 52 | |
| 53 | /* Uncomment for 3D effect */ |
| 54 | /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ |
| 55 | } |
| 56 | |
| 57 | .rl-design-options-show_icon[for=rl-design-options-show_icon-1]:after { content: '\e800'; } |
| 58 | .rl-design-options-show_icon[for=rl-design-options-show_icon-2]:after { content: '\e801'; } |
| 59 | .rl-design-options-show_icon[for=rl-design-options-show_icon-3]:after { content: '\e802'; } |
| 60 | .rl-design-options-show_icon[for=rl-design-options-show_icon-4]:after { content: '\e803'; } |
| 61 | .rl-design-options-show_icon[for=rl-design-options-show_icon-5]:after { content: '\f0fe'; } |
| 62 | .rl-design-options-show_icon[for=rl-design-options-show_icon-6]:after { content: '\e809'; } |
| 63 | .rl-design-options-show_icon[for=rl-design-options-show_icon-7]:after { content: '\e80a'; } |
| 64 | .rl-design-options-show_icon[for=rl-design-options-show_icon-8]:after { content: '\e80b'; } |
| 65 | .rl-design-options-show_icon[for=rl-design-options-show_icon-9]:after { content: '\e80d'; } |
| 66 | .rl-design-options-show_icon[for=rl-design-options-show_icon-10]:after { content: '\e80e'; } |
| 67 | .rl-design-options-show_icon[for=rl-design-options-show_icon-11]:after { content: '\f08e'; } |
| 68 | .rl-design-options-show_icon[for=rl-design-options-show_icon-12]:after { content: '\f0b2'; } |
| 69 | .rl-design-options-show_icon[for=rl-design-options-show_icon-13]:after { content: '\e804'; } |
| 70 | .rl-design-options-show_icon[for=rl-design-options-show_icon-14]:after { content: '\f14c'; } |
| 71 | .rl-design-options-show_icon[for=rl-design-options-show_icon-15]:after { content: '\f196'; } |
| 72 | .rl-design-options-show_icon[for=rl-design-options-show_icon-16]:after { content: '\f24d'; } |
| 73 | |
| 74 | /* edit.php */ |
| 75 | .wp-list-table .column-image { |
| 76 | width: 80px; |
| 77 | } |
| 78 | .wp-list-table .column-image .media-icon { |
| 79 | position: relative; |
| 80 | overflow: hidden; |
| 81 | text-align: center; |
| 82 | height: 62px; |
| 83 | } |
| 84 | .wp-list-table .column-image img { |
| 85 | position: absolute; |
| 86 | left: 50%; |
| 87 | top: 50%; |
| 88 | height: 100%; |
| 89 | width: auto; |
| 90 | -webkit-transform: translate(-50%,-50%); |
| 91 | -ms-transform: translate(-50%,-50%); |
| 92 | transform: translate(-50%,-50%); |
| 93 | } |
| 94 | .wp-list-table .column-image img.format-portrait { |
| 95 | width: 100%; |
| 96 | height: auto; |
| 97 | } |
| 98 | .wp-list-table .column-image span { |
| 99 | display: block; |
| 100 | } |
| 101 | |
| 102 | /* post.php */ |
| 103 | #postbox-container-2 h2.nav-tab-wrapper { |
| 104 | padding: 9px 0 0 0; |
| 105 | margin-bottom: 20px; |
| 106 | } |
| 107 | |
| 108 | .rl-gallery-tab .hndle { |
| 109 | padding-left: 16px; |
| 110 | } |
| 111 | |
| 112 | .rl-gallery-tab:before { |
| 113 | display: inline-block; |
| 114 | font: 400 14px/1 dashicons; |
| 115 | vertical-align: middle; |
| 116 | padding-right: 5px; |
| 117 | margin-top: -2px; |
| 118 | content: "\f128"; |
| 119 | } |
| 120 | #rl-gallery-tab-images:before { |
| 121 | content: "\f161"; |
| 122 | } |
| 123 | #rl-gallery-tab-config:before { |
| 124 | content: "\f111"; |
| 125 | } |
| 126 | #rl-gallery-tab-design:before { |
| 127 | content: "\f100"; |
| 128 | } |
| 129 | #rl-gallery-tab-paging:before { |
| 130 | content: "\f333"; |
| 131 | } |
| 132 | #rl-gallery-tab-lightbox:before { |
| 133 | content: "\f128"; |
| 134 | } |
| 135 | #rl-gallery-tab-misc:before { |
| 136 | content: "\f107"; |
| 137 | } |
| 138 | |
| 139 | .rl-gallery-field-section h3 { |
| 140 | margin: 0; |
| 141 | font-style: italic; |
| 142 | } |
| 143 | |
| 144 | .rl-metabox-content .inside { |
| 145 | padding: 8px 16px 16px; |
| 146 | } |
| 147 | |
| 148 | #responsive-gallery-shortcode .inside { |
| 149 | padding:-bottom 16px; |
| 150 | } |
| 151 | |
| 152 | #responsive-gallery-shortcode .rl-shortcode { |
| 153 | display: block; |
| 154 | } |
| 155 | |
| 156 | .rl-hide-metabox { |
| 157 | display: none !important; |
| 158 | } |
| 159 | |
| 160 | .rl-display-metabox { |
| 161 | display: block !important; |
| 162 | } |
| 163 | |
| 164 | .rl-gallery-tab-menu { |
| 165 | margin: 10px 0; |
| 166 | } |
| 167 | |
| 168 | .rl-gallery-tab-menu .spinner { |
| 169 | margin: -1px 0 0 5px; |
| 170 | float: none; |
| 171 | } |
| 172 | |
| 173 | .rl-gallery-tab-menu.rl-loading-content input, |
| 174 | .rl-gallery-tab-menu.rl-loading-content label { |
| 175 | pointer-events: none; |
| 176 | } |
| 177 | |
| 178 | .rl-gallery-tab-description { |
| 179 | font-style: italic; |
| 180 | } |
| 181 | |
| 182 | .rl-gallery-tab-content { |
| 183 | margin-top: 15px; |
| 184 | } |
| 185 | |
| 186 | .rl-gallery-tab-content.rl-loading-content { |
| 187 | pointer-events: none; |
| 188 | opacity: 0.4; |
| 189 | transition: opacity 0.3s ease-in-out; |
| 190 | } |
| 191 | |
| 192 | .rl-gallery-tab-content .description { |
| 193 | font-size: 13px; |
| 194 | } |
| 195 | |
| 196 | .rl-gallery-tab-inside > div { |
| 197 | margin: 10px 0; |
| 198 | } |
| 199 | |
| 200 | .rl-gallery-tab-content .form-table td:first-child label { |
| 201 | font-weight: 600; |
| 202 | color: #23282d; |
| 203 | } |
| 204 | |
| 205 | .rl-gallery-tab-inside .form-table { |
| 206 | width: 100%; |
| 207 | margin: 0; |
| 208 | padding: 0; |
| 209 | } |
| 210 | |
| 211 | .rl-gallery-tab-inside textarea { |
| 212 | height: 120px; |
| 213 | } |
| 214 | |
| 215 | .rl-gallery-tab-inside .form-table td:first-child { |
| 216 | width: 200px; |
| 217 | vertical-align: top; |
| 218 | } |
| 219 | |
| 220 | .rl-gallery-tab-inside .form-table td { |
| 221 | padding: 15px 10px 15px 0; |
| 222 | } |
| 223 | |
| 224 | .rl-gallery-tab-inside .form-table td { |
| 225 | padding: 10px; |
| 226 | } |
| 227 | |
| 228 | .rl-gallery-tab-content .form-table td.rl-colspan { |
| 229 | padding-left: 0; |
| 230 | padding-right: 0; |
| 231 | } |
| 232 | |
| 233 | .rl-gallery-tab-inside .rl-gallery-content { |
| 234 | text-align: left; |
| 235 | border: 1px dashed #aaa; |
| 236 | padding: 0; |
| 237 | margin: 16px 0 0 0; |
| 238 | min-height: 178px; |
| 239 | line-height: 0; |
| 240 | } |
| 241 | |
| 242 | .rl-gallery-field-output { |
| 243 | display: inline-block; |
| 244 | font-size: inherit; |
| 245 | margin: 0; |
| 246 | text-align: left; |
| 247 | } |
| 248 | |
| 249 | .rl-gallery-preview-inside .spinner { |
| 250 | margin: 4px 0 0 5px; |
| 251 | float: none; |
| 252 | } |
| 253 | |
| 254 | .rl-gallery-images { |
| 255 | margin: 0 0 14px 14px; |
| 256 | font-size: 0; |
| 257 | } |
| 258 | |
| 259 | .rl-gallery-images.rl-gallery-images-featured .rl-gallery-image { |
| 260 | cursor: default; |
| 261 | } |
| 262 | |
| 263 | .rl-gallery-images.rl-gallery-images-featured .rl-gallery-image-remove { |
| 264 | display: none; |
| 265 | } |
| 266 | |
| 267 | .rl-gallery-sortable-placeholder { |
| 268 | width: 148px; |
| 269 | height: 148px; |
| 270 | border: 1px dashed #ddd; |
| 271 | margin: 14px 14px 0 0; |
| 272 | display: inline-block; |
| 273 | } |
| 274 | |
| 275 | .rl-gallery-images .rl-gallery-image { |
| 276 | display: inline-block; |
| 277 | width: 150px; |
| 278 | height: 150px; |
| 279 | cursor: move; |
| 280 | margin: 14px 14px 0 0; |
| 281 | position: relative; |
| 282 | box-sizing: border; |
| 283 | } |
| 284 | |
| 285 | .rl-gallery-images .rl-gallery-image .rl-gallery-inner { |
| 286 | position: relative; |
| 287 | width: 150px; |
| 288 | height: 150px; |
| 289 | overflow: hidden; |
| 290 | } |
| 291 | |
| 292 | .rl-gallery-images .rl-gallery-image .rl-gallery-inner img { |
| 293 | position: absolute; |
| 294 | left: 50%; |
| 295 | top: 50%; |
| 296 | height: 100%; |
| 297 | width: auto; |
| 298 | -webkit-transform: translate(-50%,-50%); |
| 299 | -ms-transform: translate(-50%,-50%); |
| 300 | transform: translate(-50%,-50%); |
| 301 | } |
| 302 | |
| 303 | .rl-gallery-images .rl-gallery-image.rl-status-active .rl-gallery-inner { |
| 304 | opacity: 1; |
| 305 | } |
| 306 | |
| 307 | .rl-gallery-images .rl-gallery-image.rl-status-inactive .rl-gallery-inner { |
| 308 | opacity: 0.4; |
| 309 | } |
| 310 | |
| 311 | .rl-gallery-images .rl-gallery-image img { |
| 312 | width: 150px; |
| 313 | height: 150px; |
| 314 | } |
| 315 | |
| 316 | .rl-gallery-images .rl-gallery-image .rl-gallery-actions { |
| 317 | position: absolute; |
| 318 | top: -10px; |
| 319 | right: -10px; |
| 320 | } |
| 321 | |
| 322 | .rl-gallery-images .rl-gallery-image .rl-gallery-actions a { |
| 323 | color: #777; |
| 324 | cursor: pointer; |
| 325 | overflow: visible; |
| 326 | text-align: center; |
| 327 | text-decoration: none; |
| 328 | font-size: 14px; |
| 329 | line-height: 16px; |
| 330 | width: 14px; |
| 331 | height: 14px; |
| 332 | padding: 3px; |
| 333 | background: #fff; |
| 334 | box-shadow: 0 1px 2px rgba(0,0,0,0.2); |
| 335 | border-radius: 50%; |
| 336 | opacity: 0; |
| 337 | -webkit-transition: opacity 0.3s ease-in-out; |
| 338 | -moz-transition: opacity 0.3s ease-in-out; |
| 339 | -ms-transition: opacity 0.3s ease-in-out; |
| 340 | -o-transition: opacity 0.3s ease-in-out; |
| 341 | transition: opacity 0.3s ease-in-out; |
| 342 | } |
| 343 | |
| 344 | .rl-gallery-images .rl-gallery-image:hover .rl-gallery-actions a { |
| 345 | opacity: 1; |
| 346 | } |
| 347 | |
| 348 | .rl-gallery-images .rl-gallery-image .rl-gallery-actions a:hover { |
| 349 | color: #333; |
| 350 | } |
| 351 | |
| 352 | .rl-rules-groups { |
| 353 | margin-top: 16px; |
| 354 | } |
| 355 | |
| 356 | .rl-or-rules { |
| 357 | margin: 16px 0; |
| 358 | } |
| 359 | |
| 360 | .rl-rules-group table { |
| 361 | border-spacing: 0; |
| 362 | } |
| 363 | |
| 364 | .rl-rules-group table td { |
| 365 | padding: 0 5px 5px 0; |
| 366 | } |
| 367 | |
| 368 | select.rl-rule-type { |
| 369 | margin: 0; |
| 370 | } |
| 371 | |
| 372 | .rl-rules-group .rl-add-rule { |
| 373 | margin-top: 6px; |
| 374 | } |
| 375 | |
| 376 | label[for="responsive-gallery-images-hide"], label[for="responsive-gallery-config-hide"], label[for="responsive-gallery-lightbox-hide"], label[for="responsive-gallery-misc-hide"] { |
| 377 | display: none; |
| 378 | } |
| 379 | |
| 380 | .media-modal.rl-edit-modal { |
| 381 | left: 15%; |
| 382 | right: 15%; |
| 383 | top: 100px; |
| 384 | bottom: 100px; |
| 385 | } |
| 386 | |
| 387 | .media-modal.rl-edit-modal .media-toolbar, |
| 388 | .media-modal.rl-edit-modal .attachments, |
| 389 | .media-modal.rl-edit-modal .media-sidebar { |
| 390 | -webkit-transition: none; |
| 391 | -moz-transition: none; |
| 392 | -o-transition: none; |
| 393 | transition: none; |
| 394 | } |
| 395 | |
| 396 | .media-modal.rl-edit-modal .media-frame-router, |
| 397 | .media-modal.rl-edit-modal .attachments, |
| 398 | .media-modal.rl-edit-modal .media-frame-content .media-toolbar { |
| 399 | display: none; |
| 400 | } |
| 401 | |
| 402 | .media-modal.rl-edit-modal .media-frame-content { |
| 403 | top: 50px; |
| 404 | } |
| 405 | |
| 406 | .media-modal.rl-edit-modal .media-frame-title { |
| 407 | border-bottom: 1px solid #DFDFDF; |
| 408 | box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1); |
| 409 | } |
| 410 | |
| 411 | .media-modal.rl-edit-modal .media-frame-content .media-sidebar { |
| 412 | width: auto; |
| 413 | left: 0px; |
| 414 | } |
| 415 | |
| 416 | .media-modal.rl-edit-modal .media-toolbar { |
| 417 | right: 0; |
| 418 | } |
| 419 | |
| 420 | #rl-edit-attachment-modal .attachment-details .setting span, #rl-edit-attachment-modal .media-sidebar .setting span { |
| 421 | margin-right: 0; |
| 422 | width: 120px; |
| 423 | min-width: 120px; |
| 424 | } |
| 425 | |
| 426 | #rl-edit-attachment-modal .attachment-details .setting .value, #rl-edit-attachment-modal .attachment-details .setting input, #rl-edit-attachment-modal .attachment-details .setting textarea { |
| 427 | width: calc( 100% - 130px ); |
| 428 | } |
| 429 | |
| 430 | #rl-edit-attachment-modal .attachment-info { |
| 431 | width: 50%; |
| 432 | float: left; |
| 433 | border-bottom: none; |
| 434 | min-height: 120px; |
| 435 | } |
| 436 | |
| 437 | #rl-edit-attachment-modal .attachment-info .thumbnail { |
| 438 | width: 50%; |
| 439 | max-width: 100%; |
| 440 | max-height: inherit; |
| 441 | } |
| 442 | |
| 443 | #rl-edit-attachment-modal .attachment-info .thumbnail img { |
| 444 | max-width: 100%; |
| 445 | max-height: inherit; |
| 446 | } |
| 447 | |
| 448 | #rl-edit-attachment-modal .attachment-details .setting { |
| 449 | width: 50%; |
| 450 | } |
| 451 | |
| 452 | #rl-edit-attachment-modal .compat-item { |
| 453 | display: none; |
| 454 | } |
| 455 | |
| 456 | @media (max-width: 960px) { |
| 457 | .media-modal.rl-edit-modal { |
| 458 | left: 10%; |
| 459 | right: 10%; |
| 460 | } |
| 461 | } |