From 42a63668ef6d5627031739bdd61336d1bc953417 Mon Sep 17 00:00:00 2001 From: Pablo Gil Date: Tue, 4 Sep 2018 23:50:34 +0200 Subject: [PATCH] Start: fixed tabs border radius and reduced font weight for file info --- src/Mod/Start/StartPage/StartPage.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/Mod/Start/StartPage/StartPage.css b/src/Mod/Start/StartPage/StartPage.css index cd2d9b3346..9f4d9037c5 100644 --- a/src/Mod/Start/StartPage/StartPage.css +++ b/src/Mod/Start/StartPage/StartPage.css @@ -48,18 +48,20 @@ ul.tabs li a { font-weight: bold; text-transform: uppercase; border:1px solid BOXCOLOR; - border-radius: 1px; + border-radius: 3px 3px 0px 0px; box-shadow: #445 0 -5px 5px; outline: 0; } ul.tabs li a:hover { background-color: TEXTCOLOR; color: BASECOLOR; + border-color: TEXTCOLOR; } ul.tabs li a.active, ul.tabs li a.active:hover { color: TEXTCOLOR; background-color: BASECOLOR; border-bottom: 1px solid BASECOLOR; + border-color: BASECOLOR; } .panel { background: BASECOLOR; @@ -67,7 +69,7 @@ ul.tabs li a.active, ul.tabs li a.active:hover { padding: 15px; clear: both; margin-bottom: 10px; - border-radius: 3px; + border-radius: 0px 3px 3px 3px; overflow: auto; box-shadow: SHADOW 0 2px 5px; } @@ -105,6 +107,11 @@ a .caption, a .caption:link, a .caption:visited { color: TEXTCOLOR; text-decoration-color: TEXTCOLOR; } + +.caption p { + font-weight: normal; +} + .docbox a:hover { text-decoration: underline; } @@ -181,4 +188,5 @@ ul.workbenches li, ul.addonslist li { background: BOXCOLOR; border: none; padding: 5px; + border-radius: 3px; }