Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Updated to v3.4.1
Browse files Browse the repository at this point in the history
* Revised focus trapping;
* Navigation arrows are now buttons;
* Slideshow now waits for html5 video to end;
* Changed window.jQuery to global value;
* Fixed issue with 2inline items in looping group
* Fixed issue with custom full-screen button
  • Loading branch information
fancyapps committed Aug 31, 2018
1 parent e11639e commit a829fab
Show file tree
Hide file tree
Showing 15 changed files with 548 additions and 454 deletions.
53 changes: 24 additions & 29 deletions dist/jquery.fancybox.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ body.compensate-for-scrollbar {
direction: ltr;
opacity: 0;
position: absolute;
transition: opacity .25s, visibility 0s linear .25s;
transition: opacity .25s ease, visibility 0s ease .25s;
visibility: hidden;
z-index: 99997; }

Expand All @@ -72,7 +72,7 @@ body.compensate-for-scrollbar {
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
opacity: 1;
transition: opacity .25s, visibility 0s;
transition: opacity .25s ease 0s, visibility 0s ease 0s;
visibility: visible; }

.fancybox-infobar {
Expand Down Expand Up @@ -293,6 +293,7 @@ body.compensate-for-scrollbar {
padding: 10px;
transition: color .2s;
vertical-align: top;
visibility: inherit;
width: 44px; }

.fancybox-button,
Expand All @@ -303,19 +304,20 @@ body.compensate-for-scrollbar {
.fancybox-button:hover {
color: #fff; }

.fancybox-button:focus {
outline: none; }

.fancybox-button.fancybox-focus {
outline: 1px dotted; }

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
color: #888;
cursor: default; }

.fancybox-button:focus {
cursor: default;
outline: none; }

.fancybox-button.fancybox-focus {
outline: 1px dotted; }

.fancybox-button svg {
display: block;
height: 100%;
Expand Down Expand Up @@ -350,48 +352,41 @@ body.compensate-for-scrollbar {
z-index: 401; }

.fancybox-close-small:hover {
color: #fff; }
color: #fff;
opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
color: currentColor;
padding: 10px;
right: 0;
top: 0; }

.fancybox-slide--html .fancybox-close-small:hover {
color: currentColor;
opacity: 1; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
height: 38px;
background: transparent;
height: 100px;
margin: 0;
opacity: 0;
padding: 7px;
position: absolute;
top: calc(50% - (38px / 2));
width: 38px; }

.fancybox-show-nav .fancybox-navigation .fancybox-button {
transition: opacity .25s, visibility 0s, color .25s; }

.fancybox-navigation .fancybox-button::after {
content: '';
height: 100px;
left: -26px;
position: absolute;
top: -31px;
top: calc(50% - 50px);
width: 70px; }

.fancybox-navigation .fancybox-button div {
background: rgba(30, 30, 30, 0.6);
height: 100%;
padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
left: 6px; }
left: 0;
padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
right: 6px; }
padding: 31px 6px 31px 26px;
right: 0; }

/* Caption */
.fancybox-caption {
Expand Down

0 comments on commit a829fab

Please sign in to comment.