From 3007d1a9f6df3fbed66e7f0c8488cb104c19b414 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sun, 2 Dec 2018 17:11:00 +0100 Subject: [PATCH] Update style to visualize clickable items. --- resources/css/style.css | 5 +++++ resources/texts/_contentManager.html | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/resources/css/style.css b/resources/css/style.css index e03354a..b272ee7 100644 --- a/resources/css/style.css +++ b/resources/css/style.css @@ -60,6 +60,11 @@ TopWidget QToolButton:pressed { border-radius: 2px; } +TopWidget QToolButton::hover { + border: 1px solid #3366CC; + border-radius: 2px; +} + TopWidget QToolButton::menu-button { width: 100%; background: rgba(0, 0, 0, 0); diff --git a/resources/texts/_contentManager.html b/resources/texts/_contentManager.html index ede2ef1..ebc98a3 100644 --- a/resources/texts/_contentManager.html +++ b/resources/texts/_contentManager.html @@ -162,6 +162,10 @@ button { color: white; background: blue; } +details:hover { + background-color: #d9e9ff; + cursor: pointer; +}