From f9c894307d6d70e109da95d40de5923c73e9401f Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Fri, 15 Mar 2024 11:58:31 +0100 Subject: [PATCH] buttons with attribute disabled and title fix --- public/css/lehre/anrechnung.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/css/lehre/anrechnung.css b/public/css/lehre/anrechnung.css index dfae318f4..925c1a357 100644 --- a/public/css/lehre/anrechnung.css +++ b/public/css/lehre/anrechnung.css @@ -55,3 +55,9 @@ } +/* html attribute disabled and title don't work together, sets the pointer-event to auto in order to see the title toolip */ +.btn:disabled { + pointer-events: auto !important; + cursor: default; +} +