Skip to content

Commit

Permalink
Revert "fix(KAPH-3121): fix selecting wrong option"
Browse files Browse the repository at this point in the history
This reverts commit 0b432f5.
  • Loading branch information
chris.buckmaster committed May 14, 2024
1 parent e382bc0 commit 541919e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions css/iframeui.css
Original file line number Diff line number Diff line change
Expand Up @@ -11721,6 +11721,26 @@ fieldset.valid input[type=radio] + label:before {
opacity: 0;
}

.gds-select [type=radio] + label::after {
content: "";
border: 10px solid #000;
background: #fff !important;
width: 0px;
height: 0px;
position: absolute;
top: 12px;
left: 8px;
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
zoom: 1;
filter: alpha(opacity=0);
opacity: 0;
border-radius: 50%;
}

.gds-select:checked + label::after {
zoom: 1;
filter: alpha(opacity=100);
Expand Down

0 comments on commit 541919e

Please sign in to comment.