- Issue created by @csakiistvan
- 🇭🇺Hungary csakiistvan
csakiistvan → changed the visibility of the branch 3488327-use-css-variables to hidden.
Note: this issue is related to the 2.x branch, other issue → is 1.x only.
While I worked on the theming part on my theme, I saw the colors are coded into the `assets/css/frontend.css` file without css variables.
It should working with css variables:
:root {
--draggable-bg: #f6f6f2;
--draggable-border: #f9f9f9;
--draggable-header: #d6d6d6;
--draggable-placeholder: #ccc;
--draggable-title-shadow: #fff;
}
.draggable-dashboard .draggable-dashboard-block {
background-color: var(--draggable-bg);
border: 1px solid var(--draggable-border);
}
Implement proposed solution.
UI should not change
None
None
Active
2.0
Code
csakiistvan → changed the visibility of the branch 3488327-use-css-variables to hidden.