mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
102 lines
1.6 KiB
CSS
102 lines
1.6 KiB
CSS
.Toolbar {
|
|
height: 2.25rem;
|
|
padding: 0 0.5rem;
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.Content {
|
|
padding: 0.5rem;
|
|
user-select: none;
|
|
border-top: 1px solid var(--color-border);
|
|
}
|
|
|
|
.List {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.ListItem {
|
|
margin: 0 0 0.5rem;
|
|
}
|
|
|
|
.NoInteractions {
|
|
color: var(--color-dim);
|
|
}
|
|
|
|
.Interactions {
|
|
margin: 0 0 0.5rem;
|
|
}
|
|
.Interaction {
|
|
display: block;
|
|
width: 100%;
|
|
text-align: left;
|
|
background: none;
|
|
border: none;
|
|
padding: 0.25rem 0.5rem;
|
|
color: var(--color-text);
|
|
}
|
|
.Interaction:focus,
|
|
.Interaction:hover {
|
|
outline: none;
|
|
background-color: var(--color-background-hover);
|
|
}
|
|
|
|
.Label {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.Value {
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-normal);
|
|
}
|
|
|
|
.NothingSelected {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
color: var(--color-dim);
|
|
}
|
|
|
|
.Screenshot {
|
|
width: 100%;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 0.25rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.Modal {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--color-modal-background);
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.ModalImage {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.NoScreenshot {
|
|
width: 100%;
|
|
height: 200px;
|
|
background-color: var(--color-button-background-focus);
|
|
border-radius: 0.25rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|