Browse Source

Use workaround for the heavy checkmark symbol in iOS

tags/v1.1.4
eugenijm 5 years ago
parent
commit
243d8ed94e
2 changed files with 7 additions and 2 deletions
  1. +2
    -2
      lib/pleroma/web/templates/layout/app.html.eex
  2. +5
    -0
      lib/pleroma/web/templates/o_auth/o_auth/show.html.eex

+ 2
- 2
lib/pleroma/web/templates/layout/app.html.eex 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 {


+ 5
- 0
lib/pleroma/web/templates/o_auth/o_auth/show.html.eex 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 %>

Loading…
Cancel
Save