-
Notifications
You must be signed in to change notification settings - Fork 231
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
Fix excessively large notification blank state message #2023
Fix excessively large notification blank state message #2023
Conversation
app/styles/_notifications.less
Outdated
@@ -3,6 +3,9 @@ | |||
// ----------------------------------------------- | |||
|
|||
notification-drawer-wrapper { | |||
.blank-state-pf-title { | |||
font-size: 14px; |
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.
Better to make this relative to the font-size-base variable
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.
Updated to use:
// app/styles/_variables.less:
@font-size-h4: ceil(@font-size-base * 1.047); // ~14px
works?
6926da1
to
ef36cf8
Compare
[merge][severity: bug] |
Evaluated for origin web console merge up to ef36cf8 |
[Test]ing while waiting on the merge queue |
Evaluated for origin web console test up to ef36cf8 |
Origin Web Console Test Results: FAILURE (https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin_web_console/142/) (Base Commit: e724d33) (PR Branch Commit: ef36cf8) |
Origin Web Console Merge Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/merge_pull_request_origin_web_console/135/) (Base Commit: 8a15031) (PR Branch Commit: ef36cf8) (Extended Tests: bug) |
Following @sg00dwin's update, we prob need to patch the blank state as well to reduce the crazy font size:
fix #2022
A corrective fix will come upstream in angular-patternfly angular-patternfly in the future.
@spadgett @jeff-phillips-18 @sg00dwin