I have been playing around with the style of the text input node. A couple of things I cannot understand / get to work properly.
I have tried to shift my target temperature entry (in yellow) to the right. That has worked. I also magaged to changed the colour. But, under the yellow target temperature is a blue line. I tried to shorten it so its just under the yellow target temp. Now, after playing with the width, its worked in Chrome. In Firefox, it doesnt !
So thats the main problem.
Then, (if possible) I'd like the target temp (in blue) in a bigger font and centered in the middle (height) of the display, so its the same height and font size as the yellow target temp.
Using Chrome inspect I could not find anything useful, so I'm not sure thats possible.
So here is what the input looks like in Chrome:
Here it is in Firefox:
And this is what I currently have in this widgets style sheet (this is not just for the input node)
<style id="dashboard-styles-override">
.nr-dashboard-theme md-select-menu md-option {
background-color: var(--nr-dashboard-groupBorderColor);
color: #eeeeee;
height: 29px;
/* border-radius: 14px;*/
margin-left: 10px;
margin-right: 10px;
margin-top: 2px;
box-shadow: 0 0 6px 6px #24202133;
transition: 0.3s;
}
input {
width: 50px;
margin: 0 22px 0 120px;
}
.nr-dashboard-textinput md-input-container .md-input {
color: yellow
}
.nr-dashboard-theme md-select-menu md-option[selected] {
color: var(--color-blue-3) !important;
background-color: var(--color-mikered) !important;
}
.nr-dashboard-theme md-select-menu md-option:nth-child(even) {
background-color: var(--nr-dashboard-groupBorderColor);
opacity:0.8;
}
.nr-dashboard-theme md-select-menu md-option:last-child {
margin-bottom: 8px;
}
.nr-dashboard-theme md-select-menu md-option:hover {
background-color: var(--nr-dashboard-widgetBackgroundColor) !important;
padding-left: 24px;
}
.nr-dashboard-theme md-select-menu md-option > .md-ripple-container{
/* border-radius: 14px;*/
}
.nr-dashboard-theme md-select .md-select-placeholder {
color: slateblue !important;
background-color: var(--color-yellow) !important;
}
</style>