Conversation
45a3d76 to
53ef45a
Compare
…-variables-and-tailwind-utilities
SychevAndrey
left a comment
There was a problem hiding this comment.
This is a big step forward to clean CSS in the project! Good job. 👍🏻
Please check noted places and let's try to use css nesting more and don't forget about layers.
| */ | ||
|
|
||
| .cm-tooltip.cm-tooltip-autocomplete { | ||
| & > :global(ul) { |
There was a problem hiding this comment.
you use :global here, but this css file is not .module.css
plus for plain css we should use @layer
| background: var(--theme-sub-secondary) !important; | ||
| color: var(--theme-on-secondary) !important; | ||
| } | ||
|
|
||
| & li[aria-selected='true'] { | ||
| background: var(--theme-secondary) !important; | ||
| color: var(--theme-text-primary-on-light) !important; |
There was a problem hiding this comment.
it wasn't !important in scss varian, why it changed?
…-variables-and-tailwind-utilities
This reverts commit 78229ac.
| // Keep it so build can pass | ||
| export default ModuleRegistry.add({ |
There was a problem hiding this comment.
please remove.
you also might need to remove "./module": "./lib/module.js", in the package.json
this file not required for the build
…-variables-and-tailwind-utilities
…-variables-and-tailwind-utilities
| * Licensed under the Apache License, Version 2.0. | ||
| * you may not use this file except in compliance with the License. | ||
| */ | ||
| @layer components { |
There was a problem hiding this comment.
we use @layer components across all components such as button, combobox, radio, please explain why do we need to remove it, because we cant delete logic like this, we should do it consistently across all files or fix it in different way
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 0 |
TIP This summary will be updated as you push new changes. Give us feedback
…-variables-and-tailwind-utilities
…-variables-and-tailwind-utilities
…-variables-and-tailwind-utilities
…-variables-and-tailwind-utilities
…-variables-and-tailwind-utilities
* Reduce hover opacity in ripple effect * Update ripple.css
closes https://github.com/dbeaver/pro/issues/8433