-
Notifications
You must be signed in to change notification settings - Fork 0
Conversation
@@ -23,6 +23,9 @@ body { | |||
margin-bottom: 90px; | |||
color: fade-out($white, 0.2); | |||
} | |||
.panel { | |||
color: #3F3F44; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Color literals like #3F3F44
should only be used in variable declarations; they should be referred to via variable everywhere else.
Color #3F3F44
should be written as #3f3f44
@@ -72,5 +72,9 @@ class Design < Sinatra::Base | |||
slim :"design/index" | |||
end | |||
end | |||
|
|||
def client_deny_url | |||
"https://id.heroku.com/#deny" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How is that relevant to the white on white css bug?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I needed this fix to test the authorization endpoint in our design since the view calls this method.
https://github.com/heroku/identity/blob/master/lib/identity/design.rb#L51-L54
👍 |
Thanks! |
Fixes #225 and #227
This also fixes the design view of authorize client (http://localhost:5000/design/authorize when running locally)
Ready for review @heroku/api