fix styling on the new authorization page
This commit is contained in:
parent
07acfba488
commit
ab04633474
2 changed files with 15 additions and 14 deletions
|
|
@ -1,13 +1,14 @@
|
||||||
.user-consent.col-md-10.col-md-offset-1
|
.row
|
||||||
%ul.list-group
|
.user-consent.col-md-10.col-md-offset-1
|
||||||
%li.list-group-item.authorized-application.clearfix
|
%ul.list-group
|
||||||
= render "grants_list", app: @app
|
%li.list-group-item.authorized-application.clearfix
|
||||||
|
= render "grants_list", app: @app
|
||||||
|
|
||||||
.clearfix.pull-right
|
.clearfix.pull-right
|
||||||
= form_tag api_openid_connect_authorizations_path, class: "approval-button" do
|
= form_tag api_openid_connect_authorizations_path, class: "approval-button" do
|
||||||
= submit_tag t(".deny"), class: "btn btn-danger"
|
= submit_tag t(".deny"), class: "btn btn-danger"
|
||||||
= hidden_field_tag :approve, false
|
= hidden_field_tag :approve, false
|
||||||
|
|
||||||
= form_tag api_openid_connect_authorizations_path, class: "approval-button"do
|
= form_tag api_openid_connect_authorizations_path, class: "approval-button"do
|
||||||
= submit_tag t(".approve"), class: "btn btn-primary"
|
= submit_tag t(".approve"), class: "btn btn-primary"
|
||||||
= hidden_field_tag :approve, true
|
= hidden_field_tag :approve, true
|
||||||
|
|
|
||||||
|
|
@ -908,7 +908,7 @@ en:
|
||||||
bad_request: "Missing client id or redirect URI"
|
bad_request: "Missing client id or redirect URI"
|
||||||
client_id_not_found: "No client with client_id %{client_id} with redirect URI %{redirect_uri} found"
|
client_id_not_found: "No client with client_id %{client_id} with redirect URI %{redirect_uri} found"
|
||||||
private_contacts_linkage_error: "private:read and private:modify require contacts:read as well"
|
private_contacts_linkage_error: "private:read and private:modify require contacts:read as well"
|
||||||
unknown_scope: "Unknown scope: #{scope_name}"
|
unknown_scope: "Unknown scope: %{scope_name}"
|
||||||
destroy:
|
destroy:
|
||||||
fail: "The attempt to revoke the authorization with ID %{id} failed"
|
fail: "The attempt to revoke the authorization with ID %{id} failed"
|
||||||
user_applications:
|
user_applications:
|
||||||
|
|
@ -1013,7 +1013,7 @@ en:
|
||||||
contacts:
|
contacts:
|
||||||
not_found: "Aspect or contact on aspect not found"
|
not_found: "Aspect or contact on aspect not found"
|
||||||
cant_create: "Failed to add user to aspect"
|
cant_create: "Failed to add user to aspect"
|
||||||
cant_delete: "Failed to remove user from aspect"
|
cant_delete: "Failed to remove user from aspect"
|
||||||
likes:
|
likes:
|
||||||
user_not_allowed_to_like: "User is not allowed to like"
|
user_not_allowed_to_like: "User is not allowed to like"
|
||||||
like_exists: "Like already exists"
|
like_exists: "Like already exists"
|
||||||
|
|
@ -1452,4 +1452,4 @@ en:
|
||||||
open: "Open"
|
open: "Open"
|
||||||
closed: "Closed"
|
closed: "Closed"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue