Patrick Yeo
Patrick Yeo
fixes #3236 I was hoping to completely remove the dependency to the mixin `clay-navbar-size`, but it's too breaking. I moved as much as I could to use `clay-navbar-variant`. This reduces...
https://github.com/liferay/clay/issues/5132 https://clayui.com/docs/components/color-picker.html The hue selector should use ``. _Jira Ticket [LPS-190649](https://liferay.atlassian.net/browse/LPS-190649)_
fixes #5114 This is a really big change. I think it reduced the build time, but can't say for sure due to processes running on my computer. Here is a...
Clay's `setter()` function adds overhead to the Sass build. The Sass ternary `if(true, true, false)` is faster. We should avoid using `setter()` where we can.
We currently output display utilities for every breakpoint. We should be able to configure which display utilities to output at specific breakpoints. ```css .d-none { display: none !important; } .d-inline...
We can only `@import` one font file via the variable `$font-import-url`. We should use a map to allow importing multiple font faces via CSS `@import url()`.
We have a lot of deprecated variables that we keep around for backward support. It's pretty hard to keep track of variables that are current under Clay. We should try...
Customizing components inside Panel is limited. We should convert these to use the clay-css mixin to allow better customizations.
If there is a single `.btn:disabled` state, we need to apply the styles to every variant due to `.btn:disabled` being declared before the variants like `.btn-primary`. It makes it difficult...