You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
331 B
24 lines
331 B
.input-wrap{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.key{
|
|
flex: 1;
|
|
font-size: 14px;
|
|
}
|
|
.key.require::before{
|
|
content: "*";
|
|
color: red;
|
|
}
|
|
.value.disable{
|
|
background: #eeeeee;
|
|
}
|
|
.value{
|
|
flex: 2;
|
|
border-radius: 4px;
|
|
padding: 4px 8px;
|
|
border: 1px lightgrey solid;
|
|
margin:4px;
|
|
text-align: left;
|
|
color: black;
|
|
} |