This commit is contained in:
2025-08-04 11:53:55 +02:00
parent ecc1524216
commit 560ba309dd
3 changed files with 10 additions and 6 deletions

View File

@@ -469,6 +469,7 @@
.container { .container {
display: flex; display: flex;
align-items: center; align-items: center;
margin: 5px;
} }
.radioButton { .radioButton {
@@ -488,6 +489,7 @@
width: 36px; width: 36px;
background-color: #30da0c; background-color: #30da0c;
border-radius: 5px; border-radius: 5px;
margin-right: 8px;
box-shadow: 0 0 10px #003300 inset; box-shadow: 0 0 10px #003300 inset;
-webkit-box-shadow: 0 0 10px #003300 inset; -webkit-box-shadow: 0 0 10px #003300 inset;
@@ -507,13 +509,13 @@
/* When the radio button is checked, add a blue background */ /* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark { .container input:checked ~ .checkmark {
background-color: #3de31c; background-color: #69f84d;
} }
/* Create the indicator (the dot/circle - hidden when not checked) */ /* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after { .checkmark:after {
content: ""; content: "";
position: absolute; position: relative;
display: none; display: none;
} }
@@ -526,7 +528,7 @@
.container .checkmark:after { .container .checkmark:after {
top: 5px; top: 5px;
left: 8px; left: 8px;
width: 10px; width: 13px;
height: 10px; height: 10px;
border-radius: 50%; border-radius: 50%;
background: black; background: black;

View File

@@ -402,6 +402,7 @@
.pokemon.sheet.characterSheet .container { .pokemon.sheet.characterSheet .container {
display: flex; display: flex;
align-items: center; align-items: center;
margin: 5px;
} }
.pokemon.sheet.characterSheet .radioButton { .pokemon.sheet.characterSheet .radioButton {
position: absolute; position: absolute;
@@ -418,6 +419,7 @@
width: 36px; width: 36px;
background-color: #30da0c; background-color: #30da0c;
border-radius: 5px; border-radius: 5px;
margin-right: 8px;
box-shadow: 0 0 10px #003300 inset; box-shadow: 0 0 10px #003300 inset;
-webkit-box-shadow: 0 0 10px #003300 inset; -webkit-box-shadow: 0 0 10px #003300 inset;
-moz-box-shadow: 0 0 10px #003300 inset; -moz-box-shadow: 0 0 10px #003300 inset;
@@ -431,11 +433,11 @@
background-color: #3de31c; background-color: #3de31c;
} }
.pokemon.sheet.characterSheet .container input:checked ~ .checkmark { .pokemon.sheet.characterSheet .container input:checked ~ .checkmark {
background-color: #3de31c; background-color: #69f84d;
} }
.pokemon.sheet.characterSheet .checkmark:after { .pokemon.sheet.characterSheet .checkmark:after {
content: ""; content: "";
position: absolute; position: relative;
display: none; display: none;
} }
.pokemon.sheet.characterSheet .container input:checked ~ .checkmark:after { .pokemon.sheet.characterSheet .container input:checked ~ .checkmark:after {
@@ -444,7 +446,7 @@
.pokemon.sheet.characterSheet .container .checkmark:after { .pokemon.sheet.characterSheet .container .checkmark:after {
top: 5px; top: 5px;
left: 8px; left: 8px;
width: 10px; width: 13px;
height: 10px; height: 10px;
border-radius: 50%; border-radius: 50%;
background: black; background: black;

Binary file not shown.