diff --git a/package.json b/package.json
index 190eb24..cc0df9d 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "station-manager-2.0",
"private": true,
- "version": "2.3.1",
+ "version": "2.4.0",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/src/App.vue b/src/App.vue
index 07a7acd..0539951 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -96,7 +96,7 @@ button {
outline: none;
border: none;
- background-color: #0066ff;
+ background-color: #3c5a89;
color: white;
padding: 0.5em 0.5em;
@@ -107,13 +107,26 @@ button {
cursor: pointer;
transition: all 75ms;
+ &:hover:not([data-disabled='true']),
&:focus-visible {
- outline: 1px solid gold;
+ background-color: lighten($color: #3c5a89, $amount: 10%);
+ }
+
+ &[data-disabled='true'] {
+ user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+
+ color: #999;
+ }
+
+ &.btn--icon {
+ background-color: transparent;
+ padding: 0;
}
- &:hover,
&:focus-visible {
- background-color: lighten($color: #0066ff, $amount: 10%);
+ outline: 1px solid gold;
}
}
diff --git a/src/components/Changelog.vue b/src/components/Changelog.vue
new file mode 100644
index 0000000..c5e4b68
--- /dev/null
+++ b/src/components/Changelog.vue
@@ -0,0 +1,85 @@
+
+ Changelog:
+
+
+
+
+
+