0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-28 02:53:08 +00:00

add the concept of widgets and widget fields

This commit is contained in:
Charlie Humphreys
2023-06-10 13:02:13 -05:00
parent 7d30abc4d9
commit b6d37dd825
9 changed files with 485 additions and 6 deletions

View File

@@ -0,0 +1,32 @@
.widget-field {
display: inline-block;
>label {
display: inherit;
width: 50px;
margin: 0 0;
}
>input {
}
>.hints {
position: relative;
left: 50px;
max-height: 100px;
overflow-y: scroll;
background-color: white;
>.hint {
margin: 0 0;
padding: 2px;
cursor: default;
&:hover,
&.active {
background-color: rgba(0, 0, 0, 0.1);
}
}
}
}