diff --git a/assets/css/general.css b/assets/css/general.css
index d4daff757..85f5edb46 100644
--- a/assets/css/general.css
+++ b/assets/css/general.css
@@ -758,8 +758,9 @@ label {
margin-bottom: 0.25rem;
}
-.btn-pwd-showhide, .btn-pwd-showhide:hover {
+.btn-pwd-showhide, .btn-pwd-showhide:hover, .btn-included-on-field, .btn-included-on-field:hover {
border: 1px solid var(--cl-border-btn-pwd);
+ cursor: pointer;
}
.dxccsummaryheader:after {
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js
index 417fb7bda..69c010e43 100644
--- a/assets/js/sections/qso.js
+++ b/assets/js/sections/qso.js
@@ -28,6 +28,8 @@ $( document ).ready(function() {
$("[id='end_time']").each(function() {
$(this).attr("value", ("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2)+':'+("0" + now.getUTCSeconds()).slice(-2));
});
+ // update date (today, for "post qso") //
+ $('#start_date').val(("0" + now.getUTCDate()).slice(-2)+'-'+("0" + (now.getUTCMonth()+1)).slice(-2)+'-'+now.getUTCFullYear());
});
$('#reset_end_time').click(function() {
var now = new Date();
@@ -485,8 +487,8 @@ function reset_fields() {
$('#lotw_info').removeClass("lotw_info_red");
$('#lotw_info').removeClass("lotw_info_yellow");
$('#lotw_info').removeClass("lotw_info_orange");
- $('#qrz_info').text("");
- $('#hamqth_info').text("");
+ $('#qrz_info').text("").hide();
+ $('#hamqth_info').text("").hide();
$('#sota_info').text("");
$('#dxcc_id').val("");
$('#cqz').val("");
@@ -644,10 +646,10 @@ $("#callsign").focusout(function() {
$('#lotw_info').attr('title',"LoTW User. Last upload was "+result.lotw_days+" days ago");
$('[data-bs-toggle="tooltip"]').tooltip();
}
- $('#qrz_info').html('

');
- $('#qrz_info').attr('title', 'Lookup '+callsign+' info on qrz.com');
- $('#hamqth_info').html('

');
- $('#hamqth_info').attr('title', 'Lookup '+callsign+' info on hamqth.com');
+ $('#qrz_info').html('

');
+ $('#qrz_info').attr('title', 'Lookup '+callsign+' info on qrz.com').removeClass('d-none');
+ $('#hamqth_info').html('

');
+ $('#hamqth_info').attr('title', 'Lookup '+callsign+' info on hamqth.com').removeClass('d-none');
var $dok_select = $('#darc_dok').selectize();
var dok_selectize = $dok_select[0].selectize;