Skip to content

Commit 94f30bc

Browse files
author
Daniel Herzog
committed
Fix for headers nottaking the full with when they are collapsed & the view is not wrapping
1 parent 312655a commit 94f30bc

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/network/network_details_templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ templates.details = function(entry)
4949
["div",
5050
this._details_headline(entry),
5151
this._details_content(entry, do_raw),
52-
"class", "table-cell" + (do_wrap ? " wrap" : "")
52+
"class", "table" + (do_wrap ? " wrap" : "")
5353
]
5454
);
5555
};

src/network/network_style.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,13 @@
245245
overflow: auto;
246246
}
247247

248-
.network-detail-overlay .table-cell
248+
.network-detail-overlay .table
249249
{
250-
display: table-cell;
250+
display: table;
251+
width: 100%;
251252
}
252253

253-
.network-detail-overlay .wrap /* that's .table-cell.wrap */
254+
.network-detail-overlay .wrap /* that's .table.wrap */
254255
{
255256
display: block;
256257
}

0 commit comments

Comments
 (0)