Patrick Yeo
Patrick Yeo
fixes #5039
https://github.com/liferay/clay/blob/896332ddfcef6dc5a16333821d095b19dabe85d3/packages/clay-css/src/scss/mixins/_globals.scss#L244
#4967 @matuzalemsteles `:focus-visible` is working for me in Chrome, FF, MS Edge. The only problem we have is with IE11 and older Safari browsers (I don't think we have any...
This is adding a variable theme to Clay CSS that converts the project to use CSS Custom Properties. It's still a work in progress. I tried to create it without...
This adds the map `$c-root` for outputting any number of custom properties in the `:root` selector. If `$c-root` is used, we won't output the original custom properties provided by Bootstrap....
From private slack conversation: > What's the best way to override a map with an empty map or set it to null? I'm trying to override the following variable coming...
There are table row variants that don't work. I'd like to get rid of them since they never worked, but they came with Bootstrap 🤔. ``` table-primary table-secondary table-success table-info...
`clay-get-fallback(var(--gray-600)` should return `var(--gray-600)` instead of this: ``` Build error: Error: $start-at: 2 is not a number. ╷ 307 │ $fallback-value: str-slice( │ ┌──────────────────────────^ 308 │ │ $var, 309 │...
`_root.scss` only defines a few custom properties. We should be able to define any custom property we like through variables. https://github.com/liferay/clay/blob/a39732f6268f660a4e19375a70c59c7552a4bbe9/packages/clay-css/src/scss/components/_root.scss#L1-L20
We are reusing `$btn-*` variables in other components. This make it difficult to include only the component variable files you need. We can limit the use of `$btn-*` variables only...