-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat(v6): Update to PatternFly V6 Versions #54
Changes from 13 commits
c25f883
8a3c479
38abbf6
852b12f
131d72b
d163927
fe10357
bd81ee6
462fc7f
a63fe8c
17c18c5
95b8499
bafc9de
f51c84a
46bf5b3
d714e15
5e8fdc0
035f51f
7d9783d
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
.ws-react-e-catalog-tile .catalog-tile-pf.featured { | ||
border-top: 2px solid #39a5dc; | ||
} | ||
.ws-react-e-catalog-tile .catalog-tile-pf:active, .ws-react-e-catalog-tile .catalog-tile-pf:hover, .ws-react-e-catalog-tile .catalog-tile-pf:focus, .ws-react-e-catalog-tile .catalog-tile-pf:visited { | ||
color: inherit; | ||
text-decoration: none; | ||
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. This seems a little weird. The link tile has blue text/stuff in it by default (since it's a link), but this style is making all of that black on Here's the current extension - you'll likely need to update the and on hover |
||
|
@@ -17,14 +14,14 @@ | |
font-size: small; | ||
} | ||
.ws-react-e-catalog-tile .catalog-tile-pf-header .catalog-tile-pf-subtitle a { | ||
color: #0066CC; | ||
color: var(--pf-t--global--text--color--link--default); | ||
text-decoration: none; | ||
} | ||
.ws-react-e-catalog-tile .catalog-tile-pf-header .catalog-tile-pf-subtitle a:hover { | ||
color: #004080; | ||
color: var(--pf-t--global--text--color--link--hover); | ||
text-decoration: underline; | ||
} | ||
.ws-react-e-catalog-tile .pf-v5-c-card__actions { | ||
.ws-react-e-catalog-tile .pf-v6-c-card__actions { | ||
padding-left: 5px; | ||
} | ||
.ws-react-e-catalog-tile .catalog-tile-pf-icon { | ||
|
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.
If this is just the default success color, it's
--pf-t--global--color--status--success--default
. If you want a reference for icon status colors, you can look at the icon component styles and look for--m-[status]
, like--m-success
and see which token is used