1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:07:35 +00:00

LibWebView: Draw some knurling on the draggable Inspector separator

This commit is contained in:
Timothy Flynn 2023-12-04 07:28:24 -05:00 committed by Andreas Kling
parent f1837eded9
commit 65a9eae142
2 changed files with 22 additions and 5 deletions

View file

@ -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;