Skip to content

Commit

Permalink
Merge pull request #5 from kunai-consulting/COD-1527
Browse files Browse the repository at this point in the history
COD-1527 FE - Lightbox refinements
  • Loading branch information
manny-kunaico authored Mar 8, 2023
2 parents 5fc64fb + ff65e66 commit 107eeaa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kunai-consulting/fork-react-image-lightbox",
"version": "6.0.3",
"version": "6.0.4",
"description": "A lightbox component for React.js",
"scripts": {
"build": "rollup -c",
Expand Down
17 changes: 12 additions & 5 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,17 @@
bottom: 0;
width: 20px;
height: 34px;
padding: 40px 30px;
padding: 40px 40px;
margin: auto;
cursor: pointer;
opacity: 0.7;
}

.ril__navButtons:hover {
opacity: 1;
}

.ril__navButtons:active {
opacity: 0.7;
opacity: 1;
}

.ril__navButtonPrev {
Expand Down Expand Up @@ -191,7 +192,7 @@
height: 35px;
cursor: pointer;
border: none;
opacity: 0.7;
opacity: 1;
}
.ril__builtinButton:hover {
opacity: 1;
Expand Down Expand Up @@ -368,8 +369,11 @@
height: 34px;
padding: 40px 30px;
margin: auto;
}

.ril__navButtonsThumbs:hover {
background-color: rgba(244, 244, 244, 0.093);
cursor: pointer;
opacity: 0.7;
}

.ril__loadingContainer__icon {
Expand Down Expand Up @@ -405,15 +409,18 @@

.thumbNails img {
display: inline;
cursor: pointer;
}
.thumbNails {
border: 2px solid transparent;
}

.thumbNails:hover {
border: 2px solid gray;
cursor: pointer;
}

.thumbNailsactive {
border: 2px solid rgb(2, 118, 177);
cursor: pointer;
}

0 comments on commit 107eeaa

Please sign in to comment.