From fd8592c581d8bcadc494c8f8f27f4132c08a22ed Mon Sep 17 00:00:00 2001 From: Bilal Catic Date: Fri, 15 Nov 2019 09:29:02 +0100 Subject: [PATCH] modify materialize tabs style to match Kivi color scheme --- app/public/main.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/public/main.css b/app/public/main.css index 2e0d7d4..2454e3a 100644 --- a/app/public/main.css +++ b/app/public/main.css @@ -110,3 +110,20 @@ h3 { .collection a.collection-item:not(.active):hover { background-color: rgba(2, 173, 186, 0.2); } + +.tabs .tab a { + color: #02adba; + -webkit-transition: color 0.28s ease, background-color 0.28s ease; + transition: color 0.28s ease, background-color 0.28s ease; +} +.tabs .tab a:focus, +.tabs .tab a:focus.active { + background-color: rgba(2, 173, 186, 0.2); +} +.tabs .tab a:hover, +.tabs .tab a.active { + color: #02adba; +} +.tabs .indicator { + background-color: #02adba; +}