Skip to content

Commit 3dbc7d1

Browse files
authored
Fix availability of Update button. Fix Firefox settings dialog layout. (#77)
1 parent dce0e83 commit 3dbc7d1

9 files changed

Lines changed: 37 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.2.2
2+
3+
* Fix availability of Update button.
4+
15
## 3.2.1
26

37
* Fix Firefox forecast clicking issues.

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aw-clock",
3-
"version": "3.2.1",
3+
"version": "3.2.2",
44
"license": "MIT",
55
"author": "Kerry Shetline <kerry@shetline.com>",
66
"scripts": {
@@ -21,7 +21,7 @@
2121
"@tubular/astronomy": "^3.1.0",
2222
"@tubular/math": "^3.1.0",
2323
"@tubular/time": "^3.8.1",
24-
"@tubular/util": "^4.8.0",
24+
"@tubular/util": "^4.8.1",
2525
"compare-versions": "^4.1.3",
2626
"jquery": "^3.6.0",
2727
"js-cookie": "^3.0.1",

sass/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aw-clock-sass",
3-
"version": "3.2.1",
3+
"version": "3.2.2",
44
"description": "SASS builder for aw-clock",
55
"keywords": [
66
"sass"

server/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aw-clock-server",
3-
"version": "3.2.1",
3+
"version": "3.2.2",
44
"license": "MIT",
55
"author": "Kerry Shetline <kerry@shetline.com>",
66
"private": true,
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@tubular/math": "^3.1.0",
2020
"@tubular/time": "^3.8.1",
21-
"@tubular/util": "^4.8.0",
21+
"@tubular/util": "^4.8.1",
2222
"by-request": "^1.3.3",
2323
"compare-versions": "^4.1.3",
2424
"cookie-parser": "^1.4.6",

src/styles.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,12 @@ select:not([disabled]), button:not([disabled]), input:not([disabled])[type="subm
355355
.user-options {
356356
align-content: start;
357357
display: grid;
358-
grid-template-columns: max-content auto auto;
358+
grid-template-columns: auto auto auto;
359359
grid-template-rows: auto;
360360
grid-column-gap: 6px;
361361
grid-row-gap: 6px; }
362+
.user-options label {
363+
max-width: 180px; }
362364
.user-options > * {
363365
-ms-grid-row-align: center;
364366
align-self: center; }

src/styles.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,15 @@ select:not([disabled]), button:not([disabled]), input:not([disabled])[type="subm
448448
.user-options {
449449
align-content: start;
450450
display: grid;
451-
grid-template-columns: max-content auto auto;
451+
grid-template-columns: auto auto auto;
452452
grid-template-rows: auto;
453453
grid-column-gap: 6px;
454454
grid-row-gap: 6px;
455455

456+
label {
457+
max-width: 180px;
458+
}
459+
456460
&>* {
457461
-ms-grid-row-align: center;
458462
align-self: center;

0 commit comments

Comments
 (0)