-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commit of LightBox fixes #453
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,15 +165,19 @@ | |
} | ||
|
||
.slick-lightbox-close { | ||
right: 32px; | ||
top: 32px; | ||
right: 52px; | ||
top: 35px; | ||
} | ||
.slick-lightbox-close:before{font-size:40px;} | ||
|
||
.lsx-to-slider .slick-arrow, | ||
.slick-lightbox-inner .slick-arrow { | ||
background: transparent; | ||
border-radius: 50%; | ||
position:absolute; | ||
top:50%; | ||
border-style: solid; | ||
border-color: #fff; | ||
Comment on lines
173
to
+180
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
border-width: 2px; | ||
font: 0/0 a; | ||
height: 4rem; | ||
|
@@ -184,11 +188,15 @@ | |
transition: border 300ms ease; | ||
width: 4rem; | ||
z-index: 3; | ||
color: white; | ||
} | ||
Comment on lines
+191
to
192
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
.slick-prev svg, .slick-next svg{color: white;} | ||
|
||
.lsx-to-slider .slick-arrow:before, | ||
.slick-lightbox-inner .slick-arrow:before { | ||
display: block; | ||
font-family: "FontAwesome"; | ||
font-family: "slick"; | ||
color: white; | ||
Comment on lines
+193
to
+199
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The font family for the - font-family: "FontAwesome";
+ font-family: "slick"; |
||
font-size: 3rem; | ||
line-height: 1; | ||
position: absolute; | ||
|
@@ -205,13 +213,21 @@ | |
} | ||
.lsx-to-slider .slick-arrow.slick-prev:before, | ||
.slick-lightbox-inner .slick-arrow.slick-prev:before { | ||
content: "\f104"; | ||
left: 1.1rem; | ||
content: ''; /* Remove font icon */ | ||
background: url('../img/left-arrow-new.svg') no-repeat center center; | ||
width: 40px; | ||
height: 40px; | ||
display: inline-block; | ||
left: 10px; | ||
} | ||
Comment on lines
+216
to
222
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The content of the - content: "\f104";
- left: 1.1rem;
+ content: ''; /* Remove font icon */
+ background: url('../img/left-arrow-new.svg') no-repeat center center;
+ width: 40px;
+ height: 40px;
+ display: inline-block;
+ left: 10px; |
||
.lsx-to-slider .slick-arrow.slick-next:before, | ||
.slick-lightbox-inner .slick-arrow.slick-next:before { | ||
content: "\f105"; | ||
left: 1.5rem; | ||
content: ''; /* Remove font icon */ | ||
background: url('../img/right-arrow.svg') no-repeat center center; | ||
width: 40px; | ||
height: 40px; | ||
display: inline-block; | ||
left: 12px; | ||
Comment on lines
223
to
+230
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The content of the - content: "\f105";
- left: 1.5rem;
+ content: ''; /* Remove font icon */
+ background: url('../img/right-arrow.svg') no-repeat center center;
+ width: 40px;
+ height: 40px;
+ display: inline-block;
+ left: 12px; |
||
} | ||
|
||
.lsx-to-slider .slick-dots:not(.dropdown-menu) { | ||
|
@@ -268,4 +284,5 @@ | |
.lsx-units-wrapper .hidden { | ||
display: none; | ||
} | ||
/*# sourceMappingURL=style.css.map */ | ||
/*# sourceMappingURL=style.css.map */ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The positioning of the
.slick-lightbox-close
has been changed. Ensure that this change doesn't affect other elements that might be positioned relative to it.