Auto Inline Styling Suggestion
Posted: June 27th, 2022, 7:58 pm
While there are not many, there are some instances of auto generated inline styling being inserted by EASYProcess. I'd like to suggest to move as much of that to CSS class selectors as possible so that certain changes don't have to fight against EASYProcess as much.
2 examples I found:
2 examples I found:
- Validation messages are colored and hidden/unhidden using inline style attributes. Moving these to CSS classes would allow changes to the coloring or the behavior of the activated/deactivated states easier. Dedicated classes would also allow easier application of custom styling altogether.
- Table td widths are calculated out of 100% and applied using inline style attributes. These could instead be generated in a custom CSS class contained in style tags on the page. That would keep the current functionality the same while allowing custom CSS selectors to override the sizing of table columns without having to go cell by cell in EASYProcess for every table every time a change is needed. There is currently no way to disable the inline styling width, so using CSS for this purpose is not possible.