Fixed some small overflow/scrollbar issues

This commit is contained in:
Brian Vaughn
2019-02-22 08:44:05 -08:00
parent 0c346ceea8
commit 1edbfbf6cb
4 changed files with 8 additions and 2 deletions
+2 -1
View File
@@ -1,12 +1,13 @@
.ValueInputLabel {
flex: 1 1 100%;
display: flex;
}
.ValueInputLabel:focus-within {
background-color: var(--color-button-background-focus);
}
.ValueInput {
width: 100%;
flex: 1 1;
background: none;
border: 1px solid transparent;
color: var(--color-attribute-editable-value);
+2
View File
@@ -27,6 +27,8 @@
.Value {
color: var(--color-attribute-value);
overflow: hidden;
text-overflow: ellipsis;
}
.None {
@@ -26,6 +26,8 @@
.Value {
color: var(--color-attribute-value);
overflow: hidden;
text-overflow: ellipsis;
}
.None {
+2 -1
View File
@@ -51,7 +51,8 @@
}
.InspectedElement {
overflow: auto;
overflow-x: hidden;
overflow-y: auto;
font-family: var(--font-family-monospace);
font-size: var(--font-size-monospace-normal);
line-height: var(--line-height-data);