Michael Coker
Michael Coker
fixes #8031 This adds support for an SVG `` that can be defined once, then referred to throughout the rest of the document. How does it work? * `@import` the...
Delivering the full SVG source for each icon is an easy and reliable way to add an icon to a page. However, if there are multiple uses of a single...
Taking the learnings from dark theme, let's examine the current global variables and see where we can make improvements specifically for theming. A couple of examples are: * [`--pf-global--BackgroundColor--300`](https://github.com/patternfly/patternfly/blob/9e3c7120f9d1485d70a5d08ad29cb4608cc27e0b/src/patternfly/sass-utilities/themes/dark/scss-variables.scss#L5) -...
After reviewing with @mceledonia we decided that the popover and tooltips should present like menus in dark theme. * background-color-300 * no border * bring back the box shadow Chart...
Let's remove the existing spinner and make the SVG the default.
Instead of: ``` .pf-c-component { --var1: foo1; --var2: foo2; --var3: foo3; property1: var(--var1); property2: var(--var2); property3: var(--var3); ``` Write it as: ``` .pf-c-component { property1: var(--var1, foo); property2: var(--var2, foo2);...
The react menu has a lot of complicated focus management built in, and it gets complicated to allow anything to go in menu header/footer. A recommendation for the react component...
This is what it looks like now. There is a white background applied to the `%`, which is part of the input group - a "plain" input group "text" element...
Technically "default" is a status indicated by `.pf-m-default` (cyan), but "default" is also a special word in many of our enums that applies whatever the prop's default is (as if...
I think we should take a look at the nav hbs and automatically assign `aria-label="Global"` for vertical/horizontal, `aria-label="Local"` for horizontal-subnav/tertiary, and allow this to be overridden via an hbs param....