Poprawki wyglądu i funkcjonalności

This commit is contained in:
2021-03-03 01:03:21 +01:00
parent 4aa64803b1
commit 639888a499
12 changed files with 2224 additions and 201 deletions
+29 -27
View File
@@ -6,33 +6,35 @@
<p style="color: #ccc">
Pokazuje dyżurnych, którzy ostatnio byli aktywni na wybranej scenerii
</p>
</div>
<div class="search-box">
<div class="search-box_content">
<label :class="{ disabled: dataLoading }">
<select v-model="inputStationName" :disabled="dataLoading">
<option value disabled selected hidden>
{{ dataLoading ? "Pobieranie danych..." : "Wybierz scenerię" }}
</option>
<option
v-for="station in filteredStationList"
:key="station"
:value="station"
>
{{ station }}
</option>
</select>
</label>
<div class="search-box">
<div class="search-box_content">
<label :class="{ disabled: dataLoading }">
<select v-model="inputStationName" :disabled="dataLoading">
<option value disabled selected hidden>
{{
dataLoading ? "Pobieranie danych..." : "Wybierz scenerię"
}}
</option>
<option
v-for="station in filteredStationList"
:key="station"
:value="station"
>
{{ station }}
</option>
</select>
</label>
</div>
</div>
</div>
<div class="disclaimer">
<h4>Ta funkcjonalność jest w testach beta!</h4>
<p>
Informacje pokazywane na ekranie mogą znikać, a ich zawartość może być
fałszywa!
</p>
<div class="disclaimer">
<h4>Ta funkcjonalność jest w testach beta!</h4>
<p>
Informacje pokazywane na ekranie mogą znikać, a ich zawartość może
być fałszywa!
</p>
</div>
</div>
<div class="list">
@@ -203,14 +205,14 @@ export default class HistoryView extends Vue {
.history {
&_view {
font-size: 1.2em;
display: flex;
}
&_wrapper {
width: 100%;
height: 100%;
text-align: center;
margin-top: 1em;
margin-top: 0.5em;
}
}
@@ -313,7 +315,7 @@ export default class HistoryView extends Vue {
}
&_content {
max-height: 600px;
max-height: 75vh;
overflow: auto;
padding: 0.2em 0.5em;
+7 -4
View File
@@ -276,6 +276,13 @@ export default class StationsView extends Vue {
.bar_actions {
display: flex;
@include smallScreen() {
justify-content: center;
}
width: 100%;
font-size: 1.25em;
button {
@@ -355,10 +362,6 @@ export default class StationsView extends Vue {
&.open {
color: $accentCol;
}
@include smallScreen() {
font-size: 1.2em;
}
}
@keyframes blinkAnim {
+1 -1
View File
@@ -151,7 +151,7 @@ export default class TrainsView extends Vue {
@include smallScreen {
.body-wrapper {
font-size: 0.8rem;
// font-size: 0.8rem;
}
.options-wrapper {