Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
Fix black square on radio button bug on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
venkateshf22 committed Jun 24, 2020
1 parent b7f0278 commit c2740c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions app/assets/stylesheets/member-facing/fundraiser.scss
Expand Up @@ -272,6 +272,12 @@
}
}

// Fix for iOS radio button black square bug
.form--big input[type='radio'] {
background: none;
}


.overlay-toggle__close-button {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion app/services/email_tool_sender.rb
Expand Up @@ -50,7 +50,7 @@ def create_action
email: @params[:from_email],
country: @params[:country],
email_service: @params[:email_service]
}.merge(action_target_params).merge(@tracking_params)
}.merge(action_target_params, @tracking_params)
)
end

Expand Down

0 comments on commit c2740c0

Please sign in to comment.