Skip to content

Commit

Permalink
2.1.1 Tweaks to Listener Signals Map to make it fit better
Browse files Browse the repository at this point in the history
  • Loading branch information
classaxe committed Mar 25, 2020
1 parent 81bda45 commit ac09158
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions public/css/style.css
@@ -1,7 +1,7 @@
/*
* Project: RXX - NDB Logging Database
* Homepage: https://rxx.classaxe.com
* Version: 2.1.0
* Version: 2.1.1
* Date: 2020-03-25
* Licence: LGPL
* Copyright: 2020 Martin Francis
Expand Down Expand Up @@ -1464,7 +1464,7 @@ a.delete:hover {
display: none;
}
div.scroll {
padding: 0 0.5em;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion public/css/style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/css/style.less
Expand Up @@ -1413,7 +1413,7 @@ a.delete {
}
}
div.scroll {
padding: 0 0.5em;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
Expand Down
8 changes: 4 additions & 4 deletions templates/listener/signalmap.html.twig
Expand Up @@ -45,11 +45,11 @@ $(document).ready( function() {
setColumnSortedClass();
setClippedCellTitles();
$('#map').height($(window).height() - 120);
$('#map').width($(window).width() - 420);
$('#map').width($(window).width() - 450);
$('#scrollablelist').height($('#map').height() + 40);
$(window).resize(function () {
$('#map').height($(window).height() - 120);
$('#map').width($(window).width() - 420);
$('#map').width($(window).width() - 450);
$('#scrollablelist').height($('#map').height() + 40);
});
//]]>
Expand All @@ -72,10 +72,10 @@ $(document).ready( function() {
<table class="map_layout controlPanel content">
<tbody style="background:transparent">
<tr>
<td width="250">
<td>
<div class="scroll">
<div id="scrollablelist">
<table class="results" id="markerlist" style="display:none; margin: 0;">
<table class="results" id="markerlist" style="display:none; margin: 0;width: 390px">
<thead>
<tr>
<th>{% trans %}KHz{% endtrans %}</th>
Expand Down
2 changes: 1 addition & 1 deletion templates/signal/rx_map.html.twig
Expand Up @@ -8,7 +8,7 @@
<table class="signal_rx_map short">
<tr>
<td>
<div class="scroll" id="list" style="display:none;">
<div class="scroll" id="list" style="display:none; padding: 0 10px 0 5px">
<h1 class="text-center">{% trans %}Listener Locations{% endtrans %}</h1>
<div>
<table class="results">
Expand Down

0 comments on commit ac09158

Please sign in to comment.