From 6a8b695c002b43a22b1cdf4be9ee7fa843829f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=A4=E5=A4=A7=E7=BE=8A?= Date: Sun, 5 May 2024 22:37:16 +0800 Subject: [PATCH] fix: shell.css --- frontend/src/css/_shell.css | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/frontend/src/css/_shell.css b/frontend/src/css/_shell.css index 3fca2d7d..331de36e 100644 --- a/frontend/src/css/_shell.css +++ b/frontend/src/css/_shell.css @@ -6,15 +6,23 @@ background: var(--surfacePrimary); color: var(--textPrimary); z-index: 9999; - background: rgba(127, 127, 127, 0.1); + background: rgba(255, 255, 255, 0.9); transition: 0.2s ease background; cursor: ns-resize; touch-action: none; user-select: none; + width: 100%; } +.shell__divider{ + background: rgba(127, 127, 127, 0.3); + width: 100%; + height: 8px; +} .shell__divider:hover { - background: rgba(127, 127, 127, 0.4); + background: rgba(127, 127, 127, 0.9); + + } .shell__content { @@ -62,6 +70,10 @@ body.rtl .shell-content { font-size: inherit; } +.shell__text{ + color:black +} + .shell__prompt { width: 1.2rem; }