hotfix: post-upgrade adjustments

This commit is contained in:
2025-03-29 15:59:42 +01:00
parent 4ba5d544af
commit c5e53057eb
8 changed files with 42 additions and 45 deletions
+4 -4
View File
@@ -45,17 +45,17 @@
</span>
<span class="header_links">
<router-link class="route" active-class="route-active" to="/" exact>
<router-link class="route-link" active-class="route-link-active" to="/" exact>
{{ $t('app.sceneries') }}
</router-link>
/
<router-link class="route" active-class="route-active" to="/trains">{{
<router-link class="route-link" active-class="route-link-active" to="/trains">{{
$t('app.trains')
}}</router-link>
/
<router-link
class="route"
active-class="route-active"
class="route-link"
active-class="route-link-active"
:data-active="$route.path.startsWith('/journal')"
to="/journal"
>
+6 -10
View File
@@ -198,30 +198,26 @@ a.discord {
.actions-container > .action {
&.paypal {
$btnColor: #254069;
background-color: $btnColor;
background-color: #254069;
&:hover {
background-color: lighten($btnColor, 5%);
background-color: #2f5185;
}
}
&.coffee {
$btnColor: #009255;
background-color: $btnColor;
background-color: #009255;
&:hover {
background-color: lighten($btnColor, 5%);
background-color: #00a35f;
}
}
&.exit {
$btnColor: #686868;
background-color: $btnColor;
background-color: #686868;
&:hover {
background-color: lighten($btnColor, 5%);
background-color: #8d8d8d;
}
}
}
+7 -6
View File
@@ -1,11 +1,16 @@
<template>
<section class="journal-header">
<div class="journal-type-options">
<router-link class="router-link" active-class="route-active" to="/journal/timetables" exact>
<router-link
class="route-link"
active-class="route-link-active"
to="/journal/timetables"
exact
>
{{ $t('journal.section-timetables') }}
</router-link>
&nbsp;&bull;&nbsp;
<router-link class="router-link" active-class="route-active" to="/journal/dispatchers">
<router-link class="route-link" active-class="route-link-active" to="/journal/dispatchers">
{{ $t('journal.section-dispatchers') }}
</router-link>
</div>
@@ -39,8 +44,4 @@ export default defineComponent({});
display: flex;
justify-content: center;
}
.router-link.active {
color: gold;
}
</style>
+4 -2
View File
@@ -403,6 +403,8 @@ export default defineComponent({
@use '../../styles/responsive';
@use '../../styles/icons';
@use 'sass:color';
$rowCol: #424242;
.station_table {
@@ -503,13 +505,13 @@ tr,
vertical-align: middle;
&:nth-child(even) {
background-color: lighten($rowCol, 5);
background-color: color.adjust($rowCol, $lightness: 5%);
color: white;
}
&:hover,
&:focus {
background-color: lighten($rowCol, 20);
background-color: color.adjust($rowCol, $lightness: 15%);
}
td {