From 274631f068a843c5517ef235f62797ab2ba0b519 Mon Sep 17 00:00:00 2001 From: Franck ALARY Date: Fri, 8 Mar 2024 12:36:06 +0100 Subject: [PATCH] add hover to stories and music in list display --- src/App/Components/Table/Table.module.scss | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/App/Components/Table/Table.module.scss b/src/App/Components/Table/Table.module.scss index bb66d1a..c0253f6 100644 --- a/src/App/Components/Table/Table.module.scss +++ b/src/App/Components/Table/Table.module.scss @@ -94,6 +94,7 @@ margin: 0 15px 0 15px; border-bottom: 1px solid $white60; } + .cellGroupButton { font-size: 14px; } @@ -232,6 +233,7 @@ align-items: center; justify-content: flex-start; } + .groupListImage { border-radius: 10px; flex: 0 1 160px; @@ -239,18 +241,27 @@ height: auto; margin: 30px; } + .listContainer { flex: 0 1 100%; overflow: hidden; } + .list { cursor: pointer; padding: 4px; overflow-wrap: break-word; + transition: color 0.3s; } -.listSelected { + +.list:hover { + color: $white; +} + +.listSelected, .listSelected:hover { color: $orange; } + .listSelected:before { display: inline-block; padding-right: 10px;