2019-08-21 21:19:44 +08:00
|
|
|
.core_Input {
|
|
|
|
box-sizing: border-box;
|
2019-08-22 04:04:08 +08:00
|
|
|
border: solid 1px hsl(0, 0%, 25%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.core_Input .core_Input_inner {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 24px;
|
2019-08-21 21:19:44 +08:00
|
|
|
padding: 0 3px;
|
2019-08-22 04:04:08 +08:00
|
|
|
border: solid 1px hsl(0, 0%, 0%);
|
|
|
|
background-color: hsl(0, 0%, 12%);
|
|
|
|
color: hsl(0, 0%, 75%);
|
2019-08-21 21:19:44 +08:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.core_Input:hover {
|
2019-08-22 04:04:08 +08:00
|
|
|
border-color: hsl(0, 0%, 35%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.core_Input:focus-within {
|
|
|
|
border-color: hsl(0, 0%, 45%);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
|
2019-08-22 04:04:08 +08:00
|
|
|
.core_Input.disabled {
|
|
|
|
border: solid 1px hsl(0, 0%, 20%);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
|
2019-08-22 04:04:08 +08:00
|
|
|
.core_Input.disabled .core_Input_inner {
|
|
|
|
background-color: hsl(0, 0%, 15%);
|
2019-08-21 21:19:44 +08:00
|
|
|
color: var(--text-color-disabled);
|
|
|
|
}
|