Files
react/src/devtools/views/InspectedElementTree.css
T
2019-02-17 13:07:39 -08:00

58 lines
1022 B
CSS

.InspectedElementTree {
padding: 0.25rem;
border-top: 1px solid var(--color-border);
}
.InspectedElementTree:first-of-type {
border-top: none;
}
.Item {
display: flex;
}
.Name {
color: var(--color-attribute-name);
flex: 0 0 auto;
}
.Name:after {
content: ': ';
color: var(--color-text-color);
margin-right: 0.5rem;
}
.Value {
color: var(--color-attribute-value);
}
.ValueInputLabel {
flex: 1 1 100%;
}
.ValueInputLabel:focus-within {
background-color: var(--color-button-background-focus);
}
.ValueInput {
background: none;
border: 1px solid transparent;
color: var(--color-attribute-editable-value);
border-radius: 0.125rem;
width: 100%;
font-family: var(--font-family-monospace);
font-size: var(--font-size-monospace-normal);
}
.ValueInput:focus {
background-color: var(--color-button-background-focus);
outline: none;
}
.None {
color: var(--color-dimmer);
font-style: italic;
}
.Empty {
color: var(--color-dimmer);
font-style: italic;
padding-left: 0.75rem;
}