Skip to content

Commit

Permalink
FIX: Modal Close Button Display
Browse files Browse the repository at this point in the history
- fix hover effects
  • Loading branch information
aljawaid committed Jun 5, 2023
1 parent d27b0e9 commit 6f1117c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Assets/css/kanboardcss.css
Original file line number Diff line number Diff line change
Expand Up @@ -2348,7 +2348,7 @@ span.cell-float-right {
padding-left: 4px;
}

/* #### MODAL COSE BUTTON */
/* #### MODAL CLOSE BUTTON */
#modal-close-button {
transform: scale(1.5);
display: inline-block;
Expand All @@ -2358,16 +2358,21 @@ span.cell-float-right {
background: var(--pp-red-alt-2);
padding: 3px 3px 5px 6px;
border-bottom-left-radius: 3px;
color: white;
box-shadow: -1px -1px 0 3px var(--pp-white);
z-index: 1001;
}

#modal-close-button:hover {
color: var(--pp-white) !important;
#modal-close-button i {
color: var(--pp-white);
transition: var(--transition-kanboard-css);
}

#modal-close-button:hover i {
color: var(--pp-grey);
text-shadow: 0 0 1px var(--pp-white);
}

/* #### END OF MODAL COSE BUTTON */
/* #### END OF MODAL CLOSE BUTTON */

@media screen and (max-width: 500px) {
.public-header {
Expand Down

0 comments on commit 6f1117c

Please sign in to comment.