diff --git a/Base/res/html/inspector/inspector.css b/Base/res/html/inspector/inspector.css index 65757f9805..40757992f5 100644 --- a/Base/res/html/inspector/inspector.css +++ b/Base/res/html/inspector/inspector.css @@ -23,6 +23,9 @@ body { width: 100%; height: 5px; + display: flex; + justify-content: center; + cursor: row-resize; user-select: none; } @@ -84,6 +87,10 @@ body { background-color: dimgray; } + .split-view-separator circle { + fill: rgb(57, 57, 57); + } + .tab-controls-container { background-color: rgb(57, 57, 57); } @@ -103,14 +110,18 @@ body { } @media (prefers-color-scheme: light) { - .tab-controls-container { - background-color: rgb(229, 229, 229); - } - .split-view-separator { background-color: lightgray; } + .split-view-separator circle { + fill: white; + } + + .tab-controls-container { + background-color: rgb(229, 229, 229); + } + .tab-controls button { color: black; background-color: white; diff --git a/Userland/Libraries/LibWebView/InspectorClient.cpp b/Userland/Libraries/LibWebView/InspectorClient.cpp index 6cd5c38265..525782f025 100644 --- a/Userland/Libraries/LibWebView/InspectorClient.cpp +++ b/Userland/Libraries/LibWebView/InspectorClient.cpp @@ -230,7 +230,13 @@ void InspectorClient::load_inspector()
-
+
+ + + + + +