From 2a78aa25980da0695bd7f4760f09340eabfef625 Mon Sep 17 00:00:00 2001 From: phl0 Date: Sat, 4 Mar 2023 21:36:41 +0100 Subject: [PATCH] Show cursor pointer while hovering DXCC summary header --- assets/css/general.css | 6 +++++- assets/js/sections/common.js | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/assets/css/general.css b/assets/css/general.css index 6d5b732c..97718a79 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -415,4 +415,8 @@ div#station_logbooks_linked_table_paginate { .qso_panel .dxccsummary { margin-bottom: 10px; -} \ No newline at end of file +} + +.qso_panel .dxccsummaryheader { + cursor: pointer; +} diff --git a/assets/js/sections/common.js b/assets/js/sections/common.js index f06c65d6..92caf191 100644 --- a/assets/js/sections/common.js +++ b/assets/js/sections/common.js @@ -443,7 +443,7 @@ function getDxccResult(dxcc, name) { }, success: function (html) { $('.dxccsummary').remove(); - $('.qsopane').append('

DXCC Summary for '+name+'
'); + $('.qsopane').append('

DXCC Summary for '+name+'
'); $('.dxccsummarybody').append(html); } });