From 0c7459d7d7acab562fffaf4e2e9861a482c98ab2 Mon Sep 17 00:00:00 2001 From: qewer33 Date: Thu, 31 Aug 2023 17:39:34 +0300 Subject: [PATCH] StartPage CSS fixes --- src/Mod/Start/StartPage/StartPage.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/Mod/Start/StartPage/StartPage.css b/src/Mod/Start/StartPage/StartPage.css index 60bb15dfc1..c842a88265 100644 --- a/src/Mod/Start/StartPage/StartPage.css +++ b/src/Mod/Start/StartPage/StartPage.css @@ -44,6 +44,10 @@ h2 { padding-top: 5px; } +img, a { + -webkit-user-drag: none; +} + .hidden { display: none !important; } @@ -113,7 +117,7 @@ ul.tabs { position: absolute; top: 2em; left: 50%; - transform: translateX(-50%); + transform: translateX(calc(-50% - 1em)); } ul.tabs li { @@ -130,7 +134,6 @@ ul.tabs li a { text-decoration: none; outline: 0; font-size: 1.3em; - transition: 100ms; } ul.tabs li a img { @@ -186,12 +189,17 @@ ul.icons { width: 130px; height: THUMBCARDSIZE; background: BOXCOLOR; + border: solid 2px BOXCOLOR; border-radius: 8px; margin: 10px; word-wrap: break-word; text-align: center; } +.file-card:hover { + border-color: LINKCOLOR; +} + .file-card h4 { margin: 5px 0; } @@ -233,11 +241,16 @@ a .caption:visited { width: 18em; height: 5em; background: BOXCOLOR; + border: solid 2px BOXCOLOR; border-radius: 8px; margin: 10px; word-wrap: break-word; } +.quickstart-button-card:hover { + border-color: LINKCOLOR; +} + .quickstart-button-card a { display: flex; }