-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lightbox): WCAG and fullscreen fail (#2549)
* fix(lightbox): Now visible on Fullscreen and not WCAG Closes #2525, #1113 * fix callback item * add TODO --------- Co-authored-by: jolevesq <[email protected]>
- Loading branch information
Showing
6 changed files
with
69 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,35 @@ | ||
/* | ||
Hold all third party libraries override | ||
*/ | ||
|
||
/* | ||
OpenLayers | ||
*/ | ||
.ol-scale-line-inner { | ||
display: none; | ||
/* | ||
Hold all third party libraries override | ||
*/ | ||
|
||
/* | ||
OpenLayers | ||
*/ | ||
.ol-scale-line-inner { | ||
display: none; | ||
} | ||
|
||
/* | ||
yet-another-react-lightbox | ||
*/ | ||
.yarl__button { | ||
width: 44px !important; | ||
height: 44px !important; | ||
padding: 0px !important; | ||
} | ||
|
||
.yarl__button > svg { | ||
width: 24px !important; | ||
height: 24px !important; | ||
} | ||
|
||
.yarl__navigation_prev > svg, .yarl__navigation_next > svg { | ||
width: 36px !important; | ||
height: 36px !important; | ||
} | ||
|
||
.yarl__button:focus { | ||
background-color: white !important; | ||
color: #000 !important; | ||
border-radius: 50% !important; | ||
} |