Skip to content

Commit 13787fe

Browse files
author
Daniel Herzog
committed
word-wrap tweak; Fixed close button
1 parent 0af036b commit 13787fe

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/network/network_style.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,12 @@
289289
top: 0;
290290
}
291291

292+
.network-details-header-row
293+
{
294+
position: absolute;
295+
z-index: 3;
296+
}
297+
292298
.network_logger .header-token-type-first_line_part
293299
{
294300
font-weight: bold;
@@ -331,7 +337,9 @@
331337
{
332338
padding: 0;
333339
vertical-align: top;
334-
word-wrap: break-word;
340+
/*
341+
word-wrap: break-word;
342+
*/
335343
}
336344

337345
.network-details-container th

src/network/network_view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ cls.NetworkLogView = function(id, name, container_class, html, default_handler,
687687
this._handlers = {
688688
"select-next-entry": _make_selection_func.bind(this, "nextElementSibling"),
689689
"select-previous-entry": _make_selection_func.bind(this, "previousElementSibling"),
690-
"close-details": this._on_clicked_close_bound
690+
"close-request-detail": this._on_clicked_close_bound
691691
};
692692
this.id = id;
693693
ActionBroker.get_instance().register_handler(this);

0 commit comments

Comments
 (0)