From ab5e9a8909562b4b155ec495e11438871e27e148 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Tue, 9 Aug 2022 17:19:42 -0400 Subject: [PATCH] Added border and background color to repo tabs --- martian.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/martian.css b/martian.css index a4c9f11..658d93a 100644 --- a/martian.css +++ b/martian.css @@ -313,6 +313,32 @@ a.ui.basic.green.label:hover { backdrop-filter: blur(10px); } +.repo-header .ui.button { + margin-left: 1em; +} + +.ui.tabular.menu .item { + margin-right: 0.5rem; + border-top-width: 1px; + font-weight: 500; + margin-bottom: -1px; + box-shadow: none; + border-radius: .28571429rem .28571429rem 0 0 !important; + background-color: hsla(0, 20%, 4%, .30); + backdrop-filter: blur(10px); +} + +.ui.tabular.menu .item:hover { + background-color: hsla(0, 20%, 6%, .70); +} + +.ui.tabular.menu .item, +.ui.tabular.menu .item.active, +.ui.tabular.menu .item.active:hover { + border: 1px solid var(--color-secondary) !important; + border-bottom: none !important; +} + .overflow.menu .items .item { color: #9d9d9d; }