I'm currently working on creating custom styling for the UI controls on my dashboard (specifically, the ui-list, table, text, and dropdown controls).
For the UI List and Table controls, I want to be able to
- Set the highlight background and text colors when selected item is clicked
- Bold the control's border when it has the input focus
- Have the control retain the selection when the control looses the focus.
So far, I haven't been able to identify the styles that control this (except one, but it leaves the highlight color on permanently and doesn't change the text).
For the UI Text and dropdown controls, I want to style them to look the same as the ones in the Node-RED editor.
For the text inputs, I want them to
- Have a thin border around the outside instead of the underline
- Make the border bold when the control has the input focus
- Have the label text disappear once selected rather than moving above the input field.
- Change the text label placeholder color to gray
For the dropdowns, I want to
- Replace the underline with a thin border
- Have the ability to add an icon on the left.
- Change the text label placeholder color to gray
For all of the above, I'd also like to make the font size a bit larger since these controls will be used on a 10.1" touch screen.
Below is the test flow I've created as I've been playing with the style settings.
[{"id":"462e9bef9b3c1e95","type":"ui_template","z":"90a47c326929253c","group":"032223f306dbc65e","name":"Global Styles","order":4,"width":0,"height":0,"format":"<style>\n :root{\n --ui_control_border: rgb(170, 170, 170);\n --ui_control_highlight: purple;\n --ui_control_highlighted_text: white;\n }\n \n .nr-dashboard-ui_list, .tabulator, .nr-dashboard-textinput, .nr-dashboard-dropdown\n {\n border-style: solid !important;\n border-color: var(--ui_control_border) !important;\n border-width: 1px !important;\n border-radius: 4px !important;\n }\n \n /* this just highlights the list item permanently and doesn't unhighlight after selecting another one\n Also, the text color doesn't change either */\n /*.md-ripple-container {\n background: var(--ui_control_highlight) !important;\n color: var(--ui_control_highlighted_text);\n }*/\n</style>","storeOutMessages":true,"fwdInMessages":true,"resendOnRefresh":true,"templateScope":"global","className":"","x":350,"y":180,"wires":[[]]},{"id":"032223f306dbc65e","type":"ui_group","name":"Group 1","tab":"a2a04b07df99d019","order":1,"disp":true,"width":6},{"id":"a2a04b07df99d019","type":"ui_tab","name":"Test UI-List","icon":"dashboard","order":37,"disabled":false,"hidden":false}]
Here's what the example above looks like on my screen currently:
But I'd really like it to look and function just like the Node-RED editor controls
NOTE: I adjusted my theme to have a light gray background with white control groups
NOTE 2: The dropdown control is close to what I want but the text and dropdown are not centered in the control. I'm sure I didn't set this all up right, but the CSS modifications are giving me problems.
Is it possible to override the global style settings for these controls to make this work or do I have to create custom template nodes for each one? Either way, are there any good examples out there of how to customize/style these controls?