-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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 "new" labels to navigation #36939
base: main
Are you sure you want to change the base?
Conversation
Why not on dashboard too? Could be placed between label and switch button. |
Questions
|
Great callout on the px size, I'll change it to 4 Duration should only be for one release |
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
FontSize="{ThemeResource InfoBadgeValueFontSize}" | ||
FontWeight="SemiBold" /> |
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.
Why semibold? It's not in the default style. Also not in line with general guideline for typography. (given that the font-size is only 11)
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.
nit
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
FontSize="{ThemeResource InfoBadgeValueFontSize}" | ||
FontWeight="SemiBold" /> |
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.
FontWeight="SemiBold" /> |
@cinnamon-msft |
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 didn't edit this file but I think it started failing the XAML formatting check after I merged main in
<InfoBadge | ||
Margin="4,0,0,0" | ||
Style="{StaticResource NewInfoBadge}" | ||
Visibility="{x:Bind IsNew, Converter={StaticResource BoolToVisibilityConverter}, Mode=OneWay}" /> |
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.
BoolToVisibilityConverter is embedded, so may be omitted :) Mode=OneWay
may be removed too, this value is not going to change. (default for x:Bind is OneTime)
Summary of the Pull Request
Added "New" in the nav to System Tools and ZoomIt now that we have a new utility!
PR Checklist
Detailed Description of the Pull Request / Additional comments
Validation Steps Performed