0.0.137 scroll search route results

This commit is contained in:
SBD
2025-01-31 19:03:01 +03:00
parent 0407cadd50
commit fe110b1eb9
4 changed files with 23 additions and 12 deletions

View File

@@ -7,7 +7,7 @@
gap: 10px;
border: 2px solid var(--range-picker-border);
border-radius: var(--range-picker-border-radius);
padding: 22px 10px;
padding: 18px 10px;
background: #FFFFFF;
input{
width: calc(100% - 28px);

View File

@@ -124,6 +124,13 @@
margin: var(--route-text-container-margin);
border-radius: var(--route-text-container-border-radius);
font-size: var(--big-font-size);
.route_card_text_container_txt{
background-image: linear-gradient(94.66deg, rgba(0, 0, 0, 1) 0%, rgba(241, 241, 241, 0) 8.64%, rgba(241, 241, 241, 0.98) 16.62%);
color: transparent;
background-clip: text;
-webkit-background-clip: text;
}
}
.route_card_owner_info{
height: 47px;

View File

@@ -17,7 +17,7 @@
justify-content: space-between;
border: 2px solid var(--select-border);
border-radius: var(--select-border-radius);
padding: 19px 10px;
padding: 15px 10px;
background: #FFFFFF;
.select_country_header_left_part{

View File

@@ -25,11 +25,13 @@
</div>
</div>
<div class="route_card_text_container">
{% if route.comment %}
{{ route.comment|linebreaksbr }}
{% else %}
{% trans "Комментарий отсутствует" %}
{% endif %}
<div class="route_card_text_container_txt">
{% if route.comment %}
{{ route.comment|linebreaksbr }}
{% else %}
{% trans "Комментарий отсутствует" %}
{% endif %}
</div>
</div>
<div class="route_number">{% trans "Объявление №" %} {{ route.id }}</div>
</div>
@@ -44,11 +46,13 @@
</div>
<div class="card_owner_name">{{ route.owner }}</div>
<div class="route_card_text_container">
{% if route.comment %}
{{ route.comment|linebreaksbr }}
{% else %}
{% trans "Комментарий отсутствует" %}
{% endif %}
<div class="route_card_text_container_txt">
{% if route.comment %}
{{ route.comment|linebreaksbr }}
{% else %}
{% trans "Комментарий отсутствует" %}
{% endif %}
</div>
</div>
<div class="route_number">{% trans "Объявление №" %} {{ route.id }}</div>
</div>