0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-27 05:13:09 +00:00
Files
homebrewery/shared/naturalcrit/codeEditor/helpers/widget-elements/field/field.less
2023-07-15 01:05:41 -05:00

32 lines
433 B
Plaintext

.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);
}
}
}
}