-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Add Progressbar to Milestone Page #25050
Changes from all commits
e52c0b7
bce22c6
e7680f7
a36826f
8ca1733
f6f49ab
4fdd3ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1225,6 +1225,11 @@ | |
height: 200px; | ||
} | ||
|
||
.milestone-progress-big { | ||
width: min(420px, 96vw); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry but ... why "width: min" here?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know how small screens can get, but |
||
height: 10px; | ||
} | ||
|
||
.repository.compare.pull .show-form-container { | ||
text-align: left; | ||
} | ||
|
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 would have really liked to use
{percentage} Completed
here where the template code takes care of percentage rendering, but it's currently not possible with this translation system to have named tokens.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 could put
%s completed
and avoid the HTML in the translation, but that might confuse translators because they don't know that%s
is supposed to be a percentage.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.
Is it not preferred, do don't change existing translations?
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… Yesn't.
The problem is simply that new strings (which is the case for modified strings) can be untranslated for quite some time.