Skip to content

Commit

Permalink
Fixed the missing checkbox mouseover text
Browse files Browse the repository at this point in the history
  • Loading branch information
DBFBlackbull committed Jan 11, 2024
1 parent b0f48aa commit 4d41c52
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions ADnD_2E_Revised/2EStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ textarea.sheet-input-like {
/* Fake checkbox */
.charsheet label input[type="radio"],
.charsheet label input[type="checkbox"] {
display: none;
display: inline-block; /* Display the checkbox to show mouse over text */
}

.charsheet label input[type="radio"] + span::before,
Expand Down Expand Up @@ -516,8 +516,9 @@ textarea.sheet-input-like {
width: 16px;
height: 16px;
position: relative;
left: 10px;
margin: -10px;
left: 14px;
margin-left: -10px;
margin-right: -6px;
cursor: pointer;
z-index: 1;
}
Expand Down
7 changes: 4 additions & 3 deletions ADnD_2E_Revised/css/2EStyle-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ textarea.sheet-input-like {
/* Fake checkbox */
.charsheet label input[type="radio"],
.charsheet label input[type="checkbox"] {
display: none;
display: inline-block; /* Display the checkbox to show mouse over text */
}

.charsheet label input[type="radio"] + span::before,
Expand Down Expand Up @@ -516,8 +516,9 @@ textarea.sheet-input-like {
width: 16px;
height: 16px;
position: relative;
left: 10px;
margin: -10px;
left: 14px;
margin-left: -10px;
margin-right: -6px;
cursor: pointer;
z-index: 1;
}
Expand Down

0 comments on commit 4d41c52

Please sign in to comment.