From 30f613c18ae67ef7a3283884a12f7cf03d1b23a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCller?= Date: Mon, 5 Apr 2021 13:40:55 +0200 Subject: [PATCH] BETTERZON-53: Styling clickable stuff on hover --- Frontend/src/app/components/header/header.component.css | 8 ++++++++ .../product-details/product-details.component.css | 5 +++++ .../components/product-list/product-list.component.css | 5 +++++ 3 files changed, 18 insertions(+) diff --git a/Frontend/src/app/components/header/header.component.css b/Frontend/src/app/components/header/header.component.css index e3147c8..126040f 100644 --- a/Frontend/src/app/components/header/header.component.css +++ b/Frontend/src/app/components/header/header.component.css @@ -15,6 +15,10 @@ margin-left: 50%; } +.logo:hover { + cursor: pointer; +} + .searchBox { position: relative; margin: auto; @@ -36,6 +40,10 @@ margin-left: 10%; } +.profileIcon:hover { + cursor: pointer; +} + .icon-3d { padding: 10px; color: #fff; diff --git a/Frontend/src/app/components/product-details/product-details.component.css b/Frontend/src/app/components/product-details/product-details.component.css index 42dfa5b..cf2533f 100644 --- a/Frontend/src/app/components/product-details/product-details.component.css +++ b/Frontend/src/app/components/product-details/product-details.component.css @@ -81,3 +81,8 @@ margin-top: .5em; text-align: center; } + +.priceAlarm:hover { + background-color: lightgray; + cursor: pointer; +} diff --git a/Frontend/src/app/components/product-list/product-list.component.css b/Frontend/src/app/components/product-list/product-list.component.css index d80c1f5..d5eb76c 100644 --- a/Frontend/src/app/components/product-list/product-list.component.css +++ b/Frontend/src/app/components/product-list/product-list.component.css @@ -53,3 +53,8 @@ .productDescription { grid-area: description; } + +.productItem:hover { + background-color: lightgray; + cursor: pointer; +}