diff --git a/frontend/src/app/components/multi-tag-select/multi-tag-select.component.html b/frontend/src/app/components/multi-tag-select/multi-tag-select.component.html
index 5e80dde..fe219ed 100644
--- a/frontend/src/app/components/multi-tag-select/multi-tag-select.component.html
+++ b/frontend/src/app/components/multi-tag-select/multi-tag-select.component.html
@@ -1,5 +1,5 @@
{{tag}}
+ selected>{{tag|translate}}
diff --git a/frontend/src/app/components/region/region.component.html b/frontend/src/app/components/region/region.component.html
index 810a17b..7107986 100644
--- a/frontend/src/app/components/region/region.component.html
+++ b/frontend/src/app/components/region/region.component.html
@@ -1,6 +1,6 @@

+ src="https://travopti.de/api/v1/regions/{{region.region_id}}/image">
+
\ No newline at end of file
diff --git a/frontend/src/app/components/result/result.component.html b/frontend/src/app/components/result/result.component.html
index 131007b..fc34186 100644
--- a/frontend/src/app/components/result/result.component.html
+++ b/frontend/src/app/components/result/result.component.html
@@ -1,6 +1,6 @@

+ src="https://travopti.de/api/v1/regions/{{result.region_id}}/image">
0">
+
Estimated values for your choosen travel dates
|
@@ -27,7 +28,7 @@
|
- {{score.value != undefined ? (score.value|number:'1.2-2') : 'N/A'}}
+ {{score.value != undefined ? (score.value|number:PROPERTY_VIS_DEF[score.type].decimals) : 'N/A'}}
|
@@ -44,4 +45,4 @@
|
-
+
\ No newline at end of file
diff --git a/frontend/src/app/components/result/result.component.scss b/frontend/src/app/components/result/result.component.scss
index 274b8f9..4f1e544 100644
--- a/frontend/src/app/components/result/result.component.scss
+++ b/frontend/src/app/components/result/result.component.scss
@@ -4,33 +4,33 @@
flex-direction: column;
cursor: pointer;
- > .result-img {
+ >.result-img {
flex: 0 0 auto;
width: 100%;
height: 15rem;
object-fit: cover;
}
- > .result-title {
+ >.result-title {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 0.25rem;
- > .result-header {
+ >.result-header {
flex: 1 1 auto;
display: flex;
flex-direction: row;
margin: 0.25rem 0;
align-items: center;
- > .result-name {
+ >.result-name {
font-weight: bold;
font-size: larger;
margin-right: 0.25rem;
}
- > .result-country {
+ >.result-country {
text-transform: uppercase;
font-size: small;
margin-right: 0.25rem;
@@ -41,32 +41,43 @@
}
}
- > .result-details {
+ >.result-details {
display: flex;
flex-direction: column;
- > .total-accommodation {
+ >.total-accommodation {
margin: 0.5rem 0;
display: flex;
flex-direction: row;
align-items: center;
font-weight: bold;
- > mat-icon {
+ >mat-icon {
margin-right: 0.5rem;
margin-left: 3px;
}
}
- > .searched-params {
+ >.searched-params {
margin: 0.5rem 0
}
.undefined {
color: #8f8f8f;
}
+
+ .result-desc {
+ text-transform: uppercase;
+ font-size: small;
+ margin-right: 0.25rem;
+ margin-bottom: 0.5rem;
+ overflow-y: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ }
+
}
}
@@ -84,7 +95,7 @@
margin-right: 1rem;
}
- > mat-icon {
+ >mat-icon {
margin-right: 0.5rem;
}
-}
+}
\ No newline at end of file
diff --git a/frontend/src/app/components/search-input/search-input.component.html b/frontend/src/app/components/search-input/search-input.component.html
index 34810a1..60cbc8b 100644
--- a/frontend/src/app/components/search-input/search-input.component.html
+++ b/frontend/src/app/components/search-input/search-input.component.html
@@ -10,7 +10,7 @@
- When is your trip?
+ When do you want to travel?
Start
@@ -24,7 +24,7 @@
- Which climate would you prefer?
+ Which climate makes you feel comfortable?
{{key|translate}}:
@@ -89,14 +89,16 @@
- Climate
-
+ Climate
+ Choose your sweetspot
+
- Fincancial
+ Fincancial
+ Choose your sweetspot
diff --git a/frontend/src/app/components/search-input/search-input.component.scss b/frontend/src/app/components/search-input/search-input.component.scss
index 80dec6a..d2a3198 100644
--- a/frontend/src/app/components/search-input/search-input.component.scss
+++ b/frontend/src/app/components/search-input/search-input.component.scss
@@ -83,3 +83,10 @@
}
}
+.desc {
+ font-size: smaller;
+}
+
+.small-bottom-margin {
+ margin-bottom: 4px !important;
+}
diff --git a/frontend/src/app/components/share-button/share-button.component.ts b/frontend/src/app/components/share-button/share-button.component.ts
index a148cd2..c44a78a 100644
--- a/frontend/src/app/components/share-button/share-button.component.ts
+++ b/frontend/src/app/components/share-button/share-button.component.ts
@@ -1,7 +1,7 @@
-import {Component, Input, OnInit} from '@angular/core';
-import {Region} from '../../interfaces/region.interface';
-import {ShareDialogComponent} from '../../dialogs/share-dialog/share-dialog.component';
-import {MatDialog} from '@angular/material';
+import { Component, Input, OnInit } from '@angular/core';
+import { Region } from '../../interfaces/region.interface';
+import { ShareDialogComponent } from '../../dialogs/share-dialog/share-dialog.component';
+import { MatDialog } from '@angular/material';
@Component({
selector: 'app-share-button',
diff --git a/frontend/src/app/containers/region-details/region-details.component.html b/frontend/src/app/containers/region-details/region-details.component.html
index c8f1a69..dbe9e89 100644
--- a/frontend/src/app/containers/region-details/region-details.component.html
+++ b/frontend/src/app/containers/region-details/region-details.component.html
@@ -1,6 +1,6 @@

+ src="https://travopti.de/api/v1/regions/{{region.region_id}}/image">