Use workaround for the heavy checkmark symbol in iOS
authoreugenijm <eugenijm@protonmail.com>
Mon, 3 Jun 2019 15:00:32 +0000 (18:00 +0300)
committereugenijm <eugenijm@protonmail.com>
Mon, 3 Jun 2019 15:28:36 +0000 (18:28 +0300)
lib/pleroma/web/templates/layout/app.html.eex
lib/pleroma/web/templates/o_auth/o_auth/show.html.eex

index 818b3404bf17a33f48d0f5862f5d0e783936eab1..98f7293bcac122a5a731428d9fffac1c67e9c681 100644 (file)
@@ -89,7 +89,7 @@
 
       .scope:before {
         color: #b9b9ba;
-        content: "✔";
+        content: "✔\fe0e";
         margin-left: 1em;
         margin-right: 1em;
       }
 
         .scope:first-child:before {
           margin-left: 1em;
-          content: "✔";
+          content: "✔\fe0e";
         }
 
         .scope:after {
index 8b69c30335cba0b8e88ea522587c8c8383e9937c..ed4fb5ce76bf7afd1d47e8429061b365e7dd4a7f 100644 (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 %>