From 02b483e33edc40caf4a247f8a0438cf8a3208033 Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Wed, 15 Jan 2020 10:14:59 +0100 Subject: [PATCH] Setup's cursor style on label wasn't present in .scss file and was lost since 7b6481e --- css/setup.css | 3 +++ css/setup.scss | 3 +++ 2 files changed, 6 insertions(+) diff --git a/css/setup.css b/css/setup.css index 494d21ffa..35bca107d 100644 --- a/css/setup.css +++ b/css/setup.css @@ -137,6 +137,9 @@ p.error { background: url(../images/stop-mid.png) no-repeat left -5px; min-height: 48px; } +label { + cursor: pointer; +} td.label { text-align: left; } diff --git a/css/setup.scss b/css/setup.scss index 508b087b9..1f7faf301 100644 --- a/css/setup.scss +++ b/css/setup.scss @@ -175,6 +175,9 @@ p.error { background: url(../images/stop-mid.png) no-repeat left -5px; min-height: 48px; } +label { + cursor: pointer; +} td.label { text-align: left; }