Skip to content

Commit

Permalink
0.36.1 Eradicated last traces of encore webpack and shrunk signals form
Browse files Browse the repository at this point in the history
  • Loading branch information
classaxe committed Feb 8, 2020
1 parent 3a6f72d commit 6886293
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 89 deletions.
3 changes: 1 addition & 2 deletions composer.json
Expand Up @@ -43,8 +43,7 @@
"symfony/phpunit-bridge": "^5.0",
"symfony/profiler-pack": "*",
"symfony/test-pack": "^1.0",
"symfony/web-server-bundle": "^4.2.4",
"symfony/webpack-encore-pack": "^1.0.3"
"symfony/web-server-bundle": "^4.2.4"
},
"config": {
"preferred-install": {
Expand Down
32 changes: 0 additions & 32 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions package.json
Expand Up @@ -15,11 +15,5 @@
"grunt-contrib-watch": "^1.1.0"
},
"license": "LGPL",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production"
}
"private": true
}
14 changes: 10 additions & 4 deletions public/css/style.css
@@ -1,7 +1,7 @@
/*!
* Project: RXX - NDB Logging Database
* Homepage: https://rxx.classaxe.com
* Date: 2020-02-03
* Date: 2020-02-08
* Licence: LGPL
* Copyright: 2020 Martin Francis
*/
Expand Down Expand Up @@ -984,14 +984,20 @@ button.tiny {
float: right;
}
.signal_list #form_call {
width: 50px;
width: 60px;
}
.signal_list #form_khz_1,
.signal_list #form_khz_2 {
width: 40px;
width: 50px;
}
.signal_list #form_channels {
width: 95px;
width: 90px;
}
.signal_list #form_gsq {
width: 220px;
}
.signal_list label[for="form_active"] {
padding-left: 1em !important;
}
.signal_list #form_active {
width: 95px;
Expand Down
12 changes: 9 additions & 3 deletions public/css/style.less
Expand Up @@ -933,14 +933,20 @@ button.tiny {
float: right;
}
#form_call {
width:50px;
width:60px;
}
#form_khz_1,
#form_khz_2 {
width: 40px;
width: 50px;
}
#form_channels {
width: 95px;
width: 90px;
}
#form_gsq {
width: 220px;
}
label[for="form_active"] {
padding-left: 1em !important;
}
#form_active {
width: 95px;
Expand Down
4 changes: 2 additions & 2 deletions public/css/style.min.css

Large diffs are not rendered by default.

9 changes: 0 additions & 9 deletions symfony.lock
Expand Up @@ -446,15 +446,6 @@
"ref": "dae9b39fd6717970be7601101ce5aa960bf53d9a"
}
},
"symfony/webpack-encore-pack": {
"version": "1.0",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "1.0",
"ref": "0e8ef1deeaef761e1defbec0be694237660ab13a"
}
},
"symfony/yaml": {
"version": "v4.1.0"
},
Expand Down
2 changes: 2 additions & 0 deletions templates/i18n.html.twig
Expand Up @@ -605,6 +605,8 @@
{% trans %}Transmitter{% endtrans %}
{% trans %}Reported{% endtrans %}
{% trans %}Not Reported{% endtrans %}
{% trans %}Listener Locations{% endtrans %}
{% trans %}Listener{% endtrans %}
{% trans %}Listener Primary QTH{% endtrans %}
{% trans %}Listener Other QTH{% endtrans %}
{% endif %}
Expand Down
14 changes: 8 additions & 6 deletions templates/signals/form.html.twig
Expand Up @@ -25,8 +25,6 @@
<label for="form_khz_2" class="sr-only">{% trans %}Freq. 2{% endtrans %}</label>
{{ form_widget(form.khz_2) }} <span>kHz</span>
</fieldset>
</div>
<div style="display:inline-block; width:auto; float:right">
{{ form_label(form.channels) }}
{{ form_widget(form.channels) }}
</div>
Expand All @@ -38,11 +36,15 @@
</div>
{{ form_row(form.countries) }}
{{ form_row(form.region) }}
{{ form_row(form.gsq) }}
{{ form_row(form.active) }}
<div style="display:inline-block; width:auto">
{{ form_label(form.gsq) }}
{{ form_widget(form.gsq) }}
{{ form_label(form.active) }}
{{ form_widget(form.active) }}
</div>
</fieldset>
<fieldset class="section">
<legend class="line">{% trans %}Loggings{% endtrans %}</legend>
<legend class="line" id="section_loggings">{% trans %}Loggings{% endtrans %}</legend>
<div>
<div>
{{ form_label(form.listener) }}
Expand All @@ -67,7 +69,7 @@
</div>
</fieldset>
<fieldset class="section">
<legend class="line">{% trans %}Customise{% endtrans %}</legend>
<legend class="line" id="section_customise">{% trans %}Customise{% endtrans %}</legend>
{{ form_row(form.personalise) }}
<div style="display:inline-block; clear: none; float:right;">
{{ form_label(form.offsets) }}
Expand Down
24 changes: 0 additions & 24 deletions webpack.config.js

This file was deleted.

0 comments on commit 6886293

Please sign in to comment.