diff --git a/frontend/public/themes/dark.css b/frontend/public/themes/dark.css index 983538319c..eb887bfe4d 100644 --- a/frontend/public/themes/dark.css +++ b/frontend/public/themes/dark.css @@ -174,6 +174,12 @@ table th { background: var(--surfacePrimary); color: var(--textPrimary); } +.shell__divider { + background: rgba(255, 255, 255, 0.1); +} +.shell__divider:hover { + background: rgba(255, 255, 255, 0.4); +} .shell__result { border-top: 1px solid var(--divider); } diff --git a/frontend/src/components/Shell.vue b/frontend/src/components/Shell.vue index dd5bf3191d..844c496f08 100644 --- a/frontend/src/components/Shell.vue +++ b/frontend/src/components/Shell.vue @@ -1,37 +1,54 @@