-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct colors, icons and add order links #17
Conversation
@jeriox If you can tell me how to easily handle the translations of the plural/singular form of the "Item(s)" string, I'd be happy to fix that but I don't know where to start. |
https://docs.djangoproject.com/en/5.0/ref/templates/builtins/#pluralize |
@@ -0,0 +1,26 @@ | |||
@font-face { | |||
font-family: "Montserrat"; | |||
src: url('/static/pretix_wallet/webfonts/Montserrat-VariableFont_wght.ttf') format('truetype'), |
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.
this may break at some point because the static URL is hardcoded instead of using the one from the django settings
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.
Well, this is ultimately a question of which design crime you want to commit: CSS in the HTML (so it can be templated) or hardcoded URL in the CSS file, isn't it?
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 guess you could fix that with SCSS that needs to be compiled anyways, but I think its fine for now
Plural thing is fixed, feel free to merge |
Closes #10