mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-25 11:53:02 +00:00
37 lines
570 B
Plaintext
37 lines
570 B
Plaintext
.widget-field {
|
|
display: inline-block;
|
|
flex: 0 0 auto;
|
|
background-color: #22d4f6;
|
|
border-radius: 10px;
|
|
padding: 4px 2px;
|
|
|
|
>label {
|
|
display: inline;
|
|
width: 50px;
|
|
margin: 0 0;
|
|
}
|
|
|
|
>input {
|
|
background-color: #22d4f6;
|
|
border: none;
|
|
}
|
|
|
|
>.hints {
|
|
position: relative;
|
|
left: 30px;
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
} |