mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-27 16:14:39 -06:00
Theme Fixes
This commit is contained in:
parent
640edd915b
commit
b76b95ac24
@ -44,4 +44,8 @@
|
||||
|
||||
select[name=filter_User] + .select2 {
|
||||
min-width: 20rem;
|
||||
}
|
||||
|
||||
.navbar-collapse {
|
||||
padding-left: 15px !important;
|
||||
}
|
||||
@ -224,4 +224,58 @@ a.sort-by-open-dropdown:hover {
|
||||
|
||||
#listFilterForm .card-header {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.p-3{
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.py-1 {
|
||||
padding-top: 3px!important;
|
||||
padding-bottom: 3px!important;
|
||||
}
|
||||
|
||||
.px-2 {
|
||||
padding: 0!important;
|
||||
}
|
||||
|
||||
.btn-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.p-3 {
|
||||
padding: 8px !important;
|
||||
}
|
||||
|
||||
.searchbut {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
#main > div > nav {
|
||||
padding-bottom: 10px !important;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
padding: 0px !important;
|
||||
}
|
||||
.subbreadcrumb small , .sort-by-selected-text{
|
||||
color: black !important;
|
||||
}
|
||||
|
||||
.img-thumbnail {
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.products-list p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.navbar-collapse {
|
||||
padding-left: 15px !important;
|
||||
}
|
||||
@ -209,6 +209,7 @@ return [
|
||||
'corporate_info' => 'Corporate Info',
|
||||
'featured_ads' => "Featured Ads",
|
||||
'trending_ads' => 'Trendind Ads',
|
||||
'search_ad_result_prefix' => 'on',
|
||||
'search_ads_result_message' => [
|
||||
'name' => ':count ads found for :name search',
|
||||
],
|
||||
@ -280,6 +281,7 @@ return [
|
||||
"no_location" => "No location is selected.",
|
||||
"continue" => 'Continue',
|
||||
"gallery" => 'Gallery',
|
||||
"ad" => 'Ad',
|
||||
"ads" => 'Ads',
|
||||
"were_found" => 'were found.',
|
||||
|
||||
|
||||
@ -210,6 +210,7 @@ return [
|
||||
'corporate_info' => 'Kurumsal Bilgiler',
|
||||
'featured_ads' => "Öne Çıkan İlanlar",
|
||||
'trending_ads' => 'Popüler İlanlar',
|
||||
'search_ad_result_prefix' => 'Aramanızda',
|
||||
'search_ads_result_message' => [
|
||||
'name' => ':name aramanızda :count adet ilan bulunmuştur.
|
||||
',
|
||||
@ -219,7 +220,7 @@ return [
|
||||
'view_cart' => 'Sepeti Görüntüle',
|
||||
'no_ads' => 'İlan bulunamadı!',
|
||||
'show_display_mode' => [
|
||||
'map' => 'harita',
|
||||
'map' => 'Harita',
|
||||
'list' => 'Liste',
|
||||
],
|
||||
'advs_list_table_thead' => [
|
||||
@ -282,6 +283,7 @@ return [
|
||||
"no_location" => "Lokasyon eklenmemiş.",
|
||||
"continue" => 'Devam Et',
|
||||
"gallery" => 'Galeri',
|
||||
"ad" => 'İlan',
|
||||
"ads" => 'İlanlar',
|
||||
"were_found" => 'bulundu.',
|
||||
|
||||
|
||||
@ -26,8 +26,9 @@
|
||||
"{{ catText }}"
|
||||
</h1>
|
||||
{% endif %}
|
||||
{{ trans('visiosoft.module.advs::field.search_ad_result_prefix')|lower }}
|
||||
<span>
|
||||
{{ advs.total }} {{ trans('visiosoft.module.advs::field.ads')|lower }}
|
||||
{{ advs.total }} {{ trans('visiosoft.module.advs::field.ad')|lower }}
|
||||
</span>
|
||||
{{ trans('visiosoft.module.advs::field.were_found') }}
|
||||
</div>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
<div class="row text-center list-view-type justify-content-center">
|
||||
<div class="row text-center list-view-type justify-content-center subbreadcrumb">
|
||||
<div class="col-4 col-md-3">
|
||||
{% if setting_value('visiosoft.module.location::list_page_location') %}
|
||||
<button onclick="changeViewType('{{ url_route('visiosoft.module.advs::view_type', ['map']) }}')"
|
||||
@ -15,14 +15,14 @@
|
||||
<small class="d-md-none d-lg-inline">{{ trans('visiosoft.module.advs::field.show_list_view.name') }}</small>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-3 list-table-view d-none d-md-block">
|
||||
<div class="col-3 col-md-3 list-table-view d-none d-md-block">
|
||||
<button onclick="changeViewType('{{ url_route('visiosoft.module.advs::view_type', ['table']) }}')"
|
||||
class="border-0 text-dark d-flex align-items-center justify-content-center">
|
||||
<img src="{{ img('visiosoft.module.advs::images/table-icon.svg').url }}" alt="table icon" class="mr-1">
|
||||
<small class="d-md-none d-lg-inline">{{ trans('visiosoft.module.advs::field.show_table_view.name') }}</small>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-4 col-md-3 pr-0">
|
||||
<div class="col-4 col-md-3">
|
||||
<button onclick="changeViewType('{{ url_route('visiosoft.module.advs::view_type', ['gallery']) }}')"
|
||||
class="mx-auto border-0 text-dark d-flex align-items-center justify-content-center">
|
||||
<img src="{{ img('visiosoft.module.advs::images/gallery-icon.svg').url }}" alt="gallery icon" class="mr-1">
|
||||
|
||||
@ -55,9 +55,9 @@
|
||||
<button class="btn btn-link text-dark d-flex align-items-center"
|
||||
data-toggle="collapse" data-target="#dateContainer"
|
||||
aria-expanded="true" aria-controls="dateContainer">
|
||||
<img src="{{ img('visiosoft.module.advs::images/date-icon.svg').url }}"
|
||||
class="mr-2"
|
||||
alt="date icon">
|
||||
{# <img src="{{ img('visiosoft.module.advs::images/date-icon.svg').url }}"#}
|
||||
{# class="mr-2"#}
|
||||
{# alt="date icon">#}
|
||||
<span>{{ trans("visiosoft.module.advs::field.date.name") }}</span>
|
||||
</button>
|
||||
</h5>
|
||||
@ -113,7 +113,7 @@
|
||||
<button class="btn btn-link text-dark" data-toggle="collapse"
|
||||
data-target="#mediaContainer"
|
||||
aria-expanded="true" aria-controls="mediaContainer">
|
||||
<i class="fa fa-camera"></i>
|
||||
{# <i class="fa fa-camera"></i>#}
|
||||
{{ trans("visiosoft.module.advs::field.photo.name") }}
|
||||
, {{ trans("visiosoft.module.advs::field.video.name") }}
|
||||
</button>
|
||||
@ -159,7 +159,7 @@
|
||||
<button class="btn btn-link text-dark" data-toggle="collapse"
|
||||
data-target="#mapContainer"
|
||||
aria-expanded="true" aria-controls="mapContainer">
|
||||
<i class="fa fa-map"></i>
|
||||
{# <i class="fa fa-map"></i>#}
|
||||
{{ trans("visiosoft.module.advs::field.map.name") }}
|
||||
</button>
|
||||
</h5>
|
||||
@ -187,7 +187,7 @@
|
||||
<div class="card">
|
||||
<div class="card-header bg-primary text-center" id="submitHeading">
|
||||
<h5 class="mb-0">
|
||||
<button class="btn btn-link text-white w-100">
|
||||
<button class="btn btn-link text-white w-100 searchbut">
|
||||
<i class="fas fa-search"></i>
|
||||
{{ trans("visiosoft.module.advs::field.search") }}
|
||||
</button>
|
||||
|
||||
@ -5,8 +5,8 @@
|
||||
<button class="btn btn-link text-dark d-flex align-items-center" data-toggle="collapse"
|
||||
data-target="#price"
|
||||
aria-expanded="true" aria-controls="price">
|
||||
<img src="{{ img('visiosoft.module.advs::images/price-icon.svg').url }}" alt="price icon"
|
||||
class="mr-2">
|
||||
{# <img src="{{ img('visiosoft.module.advs::images/price-icon.svg').url }}" alt="price icon"#}
|
||||
{# class="mr-2">#}
|
||||
<span>{{ trans("visiosoft.module.advs::field.price.name") }}</span>
|
||||
</button>
|
||||
</h5>
|
||||
|
||||
@ -5,8 +5,8 @@
|
||||
<h5 class="mb-0">
|
||||
<button class="btn btn-link text-dark d-flex align-items-center" data-toggle="collapse"
|
||||
data-target="#location" aria-expanded="true" aria-controls="location">
|
||||
<img src="{{ img('visiosoft.module.location::images/location-icon.svg').url }}" class="mr-2"
|
||||
alt="location icon">
|
||||
{# <img src="{{ img('visiosoft.module.location::images/location-icon.svg').url }}" class="mr-2"#}
|
||||
{# alt="location icon">#}
|
||||
<span>{{ trans("visiosoft.module.location::addon.title") }}</span>
|
||||
</button>
|
||||
</h5>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user