| Index: third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css b/third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css
|
| index d453c83f0d701e8505a2d8db01dbeaba3ba3be19..34828965ecc32518cc8d443e327fa0c92cbd321e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css
|
| @@ -10,18 +10,31 @@
|
|
|
| .computed-style-property {
|
| display: flex;
|
| - flex-wrap: wrap;
|
| + overflow: hidden;
|
| + flex: auto;
|
| }
|
|
|
| .computed-style-property .property-name {
|
| - width: 16em;
|
| + min-width: 5em;
|
| text-overflow: ellipsis;
|
| overflow: hidden;
|
| + flex-shrink: 1;
|
| + flex-basis: 16em;
|
| + flex-grow: 1;
|
| }
|
|
|
| .computed-style-property .property-value {
|
| - min-width: 5em;
|
| + margin-left: 2em;
|
| position: relative;
|
| + display: flex;
|
| + flex-shrink: 0;
|
| + flex-basis: 5em;
|
| + flex-grow: 10;
|
| +}
|
| +
|
| +.computed-style-property .property-value-text {
|
| + overflow: hidden;
|
| + text-overflow: ellipsis;
|
| }
|
|
|
| .tree-outline li:hover .goto-source-icon {
|
|
|