mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
31 lines
577 B
CSS
31 lines
577 B
CSS
.CheckboxLabel {
|
|
flex: 1 1 100%;
|
|
display: flex;
|
|
}
|
|
.CheckboxLabel:focus-within {
|
|
background-color: var(--color-button-background-focus);
|
|
}
|
|
|
|
.Checkbox:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.Input {
|
|
flex: 1 1;
|
|
background: none;
|
|
border: 1px solid transparent;
|
|
color: var(--color-attribute-editable-value);
|
|
border-radius: 0.125rem;
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-normal);
|
|
}
|
|
.Input:focus {
|
|
background-color: var(--color-button-background-focus);
|
|
outline: none;
|
|
}
|
|
|
|
.ResetButton {
|
|
flex: 0 0 auto;
|
|
padding: 0 0.5rem;
|
|
}
|