Title: [227816] branches/safari-605-branch/Source/WebInspectorUI
- Revision
- 227816
- Author
- [email protected]
- Date
- 2018-01-30 10:50:49 -0800 (Tue, 30 Jan 2018)
Log Message
Cherry-pick r227666. rdar://problem/37019530
Modified Paths
Diff
Modified: branches/safari-605-branch/Source/WebInspectorUI/ChangeLog (227815 => 227816)
--- branches/safari-605-branch/Source/WebInspectorUI/ChangeLog 2018-01-30 18:50:44 UTC (rev 227815)
+++ branches/safari-605-branch/Source/WebInspectorUI/ChangeLog 2018-01-30 18:50:49 UTC (rev 227816)
@@ -1,3 +1,26 @@
+2018-01-30 Jason Marcell <[email protected]>
+
+ Cherry-pick r227666. rdar://problem/37019530
+
+ 2018-01-25 Joseph Pecoraro <[email protected]>
+
+ Web Inspector: Network - Cookies view should behave better at narrow widths, all data is hidden
+ https://bugs.webkit.org/show_bug.cgi?id=182163
+ <rdar://problem/36893241>
+
+ Reviewed by Brian Burg.
+
+ * UserInterface/Views/ResourceCookiesContentView.css:
+ (.resource-cookies .table):
+ Give these tables a reasonable minimum size so that if the inspector
+ is narrow, the content view can still be scrolled to see all of
+ the table data.
+
+ * UserInterface/Views/Table.css:
+ (.table > .header):
+ Match the data-container and mark overflow as hidden, otherwise
+ super narrow widths show header content beyond the edge.
+
2018-01-25 Jason Marcell <[email protected]>
Cherry-pick r227585. rdar://problem/36873363
Modified: branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/ResourceCookiesContentView.css (227815 => 227816)
--- branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/ResourceCookiesContentView.css 2018-01-30 18:50:44 UTC (rev 227815)
+++ branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/ResourceCookiesContentView.css 2018-01-30 18:50:49 UTC (rev 227816)
@@ -29,6 +29,7 @@
.resource-cookies .table {
border: 1px solid var(--border-color);
+ min-width: 600px;
}
.resource-cookies .table > .header {
Modified: branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/Table.css (227815 => 227816)
--- branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/Table.css 2018-01-30 18:50:44 UTC (rev 227815)
+++ branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/Table.css 2018-01-30 18:50:49 UTC (rev 227816)
@@ -41,6 +41,7 @@
line-height: calc(var(--navigation-bar-height) - 1px);
border-bottom: 1px solid var(--border-color);
background: white;
+ overflow-x: hidden;
vertical-align: middle;
white-space: nowrap;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes