Use workaround for the heavy checkmark symbol in iOS

This commit is contained in:
eugenijm 2019-06-03 18:00:32 +03:00
parent f4e2595592
commit 243d8ed94e
2 changed files with 7 additions and 2 deletions

View File

@ -89,7 +89,7 @@
.scope:before {
color: #b9b9ba;
content: "";
content: "\fe0e";
margin-left: 1em;
margin-right: 1em;
}
@ -197,7 +197,7 @@
.scope:first-child:before {
margin-left: 1em;
content: "";
content: "\fe0e";
}
.scope:after {

View File

@ -56,4 +56,9 @@
<%= hidden_input f, :response_type, value: @response_type %>
<%= hidden_input f, :redirect_uri, value: @redirect_uri %>
<%= hidden_input f, :state, value: @state %>
<%= if Pleroma.Config.oauth_consumer_enabled?() do %>
<%= render @view_module, Pleroma.Web.Auth.Authenticator.oauth_consumer_template(), assigns %>
<% end %>
<% end %>