Skip to content

Commit

Permalink
Revert "fix(KAPH-3121): fix horizontally squashed selected radio button"
Browse files Browse the repository at this point in the history
This reverts commit 51c55e8.
  • Loading branch information
chris.buckmaster committed May 14, 2024
1 parent 541919e commit 4d7c734
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions css/iframeui.css
Original file line number Diff line number Diff line change
Expand Up @@ -11643,7 +11643,8 @@ fieldset.valid input[type=checkbox] + label:before {
}

fieldset.valid input[type=radio] + label:before {
border: 2px solid #000 !important;
border-color: #060 !important;
border: 0px !important;
}

.achieveforms-container .all-sections .field .fieldContent fieldset.fieldInput .checkbox-wrapper .check2:focus + label:before, .achieveforms-container .all-sections .field .fieldContent fieldset.fieldInput .checkbox-wrapper .radio2:focus + label:before, .achieveforms-container .all-sections .field .fieldContent fieldset.fieldInput .radio-wrapper .check2:focus + label:before, .achieveforms-container .all-sections .field .fieldContent fieldset.fieldInput .radio-wrapper .radio2:focus + label:before {
Expand Down Expand Up @@ -11676,7 +11677,7 @@ fieldset.valid input[type=radio] + label:before {

}

.gds-select [type=checkbox] + label::before {
.gds-select [type=checkbox] + label::before, .gds-select [type=radio] + label::before {
border-radius: 0px;
content: "";
border: 2px solid #000 !important;
Expand All @@ -11690,10 +11691,11 @@ fieldset.valid input[type=radio] + label:before {

.gds-select [type=radio] + label::before {
content: "";
border: 2px solid #000 !important;
border: 2px solid #000;
background: transparent;
width: 25px;
height: 25px;
width: 35px;
height: 35px;
/* position: absolute;*/
top: 5px;
left: 0;
border-radius: 50%;
Expand Down

0 comments on commit 4d7c734

Please sign in to comment.