long texts class name changed

This commit is contained in:
batuhanbas
2019-11-27 11:16:17 +03:00
parent be54af562e
commit 7fe94b275d
19 changed files with 57 additions and 57 deletions

View File

@@ -75,7 +75,7 @@
<td class="col-md-10 text-right border-right-0 border-bottom-0">
<strong>{{ trans('bills.sub_total') }}</strong>
</td>
<td class="col-md-2 text-right border-bottom-0">
<td class="col-md-2 text-right border-bottom-0 long-texts">
<span id="sub-total" v-html="totals.sub">0</span>
</td>
</tr>
@@ -137,7 +137,7 @@
<td class="col-md-10 text-right border-right-0 border-bottom-0">
<strong>{{ trans_choice('general.taxes', 1) }}</strong>
</td>
<td class="col-md-2 text-right border-bottom-0">
<td class="col-md-2 text-right border-bottom-0 long-texts">
<span id="tax-total" v-html="totals.tax">0</span>
</td>
</tr>
@@ -148,7 +148,7 @@
<td class="col-md-10 text-right border-right-0">
<strong>{{ trans('bills.total') }}</strong>
</td>
<td class="col-md-2 text-right">
<td class="col-md-2 text-right long-texts">
<span id="grand-total" v-html="totals.total">0</span>
</td>
</tr>

View File

@@ -76,7 +76,7 @@
<td class="col-md-10 text-right border-right-0 border-bottom-0">
<strong>{{ trans('bills.sub_total') }}</strong>
</td>
<td class="col-md-2 text-right border-bottom-0">
<td class="col-md-2 text-right border-bottom-0 long-texts">
<span id="sub-total" v-html="totals.sub">0</span>
</td>
</tr>
@@ -138,7 +138,7 @@
<td class="col-md-10 text-right border-right-0 border-bottom-0">
<strong>{{ trans_choice('general.taxes', 1) }}</strong>
</td>
<td class="col-md-2 text-right border-bottom-0">
<td class="col-md-2 text-right border-bottom-0 long-texts">
<span id="tax-total" v-html="totals.tax">0</span>
</td>
</tr>
@@ -146,7 +146,7 @@
@stack('grand_total_td_start')
<tr class="row" id="tr-total">
<td class="col-md-10 text-right border-right-0">
<td class="col-md-10 text-right border-right-0 long-texts">
<strong>{{ trans('bills.total') }}</strong>
</td>
<td class="col-md-2 text-right">

View File

@@ -103,7 +103,7 @@
@stack('taxes_td_end')
@stack('total_td_start')
<td class="col-md-2 text-right total-column border-bottom-0">
<td class="col-md-2 text-right total-column border-bottom-0 long-texts">
<input name="item[][total]"
data-item="total"
v-model.lazy="row.total"

View File

@@ -53,13 +53,13 @@
<td class="col-xs-4 col-sm-3 col-md-3 col-lg-3 col-xl-3">
<a class="col-aka text-success " href="{{ route('vendors.show', $item->id) }}">{{ $item->name }}</a>
</td>
<td class="col-md-2 col-lg-2 col-xl-2 hidden-md o-y">
<td class="col-md-2 col-lg-2 col-xl-2 hidden-md long-texts">
{{ !empty($item->email) ? $item->email : trans('general.na') }}
</td>
<td class="col-sm-3 col-md-2 col-lg-2 col-xl-2 hidden-sm o-y">
<td class="col-sm-3 col-md-2 col-lg-2 col-xl-2 hidden-sm long-texts">
{{ $item->phone }}
</td>
<td class="col-lg-2 col-xl-2 text-right hidden-lg o-y">
<td class="col-lg-2 col-xl-2 text-right hidden-lg long-texts">
@money($item->unpaid, setting('default.currency'), true)
</td>
<td class="col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1">

View File

@@ -21,16 +21,16 @@
</div>
<div class="card-body d-grid">
<a class="text-sm font-weight-600">{{ trans('general.email') }}</a> <a class="text-xs o-y">{{ $vendor->email }}</a>
<a class="text-sm font-weight-600">{{ trans('general.email') }}</a> <a class="text-xs long-texts">{{ $vendor->email }}</a>
<div class="dropdown-divider"></div>
<a class="text-sm font-weight-600">{{ trans('general.phone') }}</a> <a class="text-xs o-y">{{ $vendor->phone }}</a>
<a class="text-sm font-weight-600">{{ trans('general.phone') }}</a> <a class="text-xs long-texts">{{ $vendor->phone }}</a>
<div class="dropdown-divider"></div>
<a class="text-sm font-weight-600">{{ trans('general.website') }}</a> <a class="text-xs o-y">{{ $vendor->website }}</a>
<a class="text-sm font-weight-600">{{ trans('general.website') }}</a> <a class="text-xs long-texts">{{ $vendor->website }}</a>
<div class="dropdown-divider"></div>
<a class="text-sm font-weight-600">{{ trans('general.tax_number') }}</a> <a class="text-xs o-y">{{ $vendor->tax_number }}</a>
<a class="text-sm font-weight-600">{{ trans('general.tax_number') }}</a> <a class="text-xs long-texts">{{ $vendor->tax_number }}</a>
@if ($vendor->reference)
<div class="dropdown-divider"></div>
<a class="text-sm font-weight-600">{{ trans('general.reference') }}</a> <a class="text-xs o-y">{{ $vendor->reference }}</a>
<a class="text-sm font-weight-600">{{ trans('general.reference') }}</a> <a class="text-xs long-texts">{{ $vendor->reference }}</a>
@endif
</div>
</div>