static html classnames return to tailwind classnames for .blade files

This commit is contained in:
Burak Civan
2022-06-10 10:17:46 +03:00
parent df5f9e7dc7
commit 12b19a3ad0
16 changed files with 90 additions and 102 deletions

View File

@ -38,7 +38,7 @@
<input
type="text"
:ref="'items-' + index + '-name'"
class="form-element mt-0"
class="w-full text-sm px-3 py-2.5 mt-0 rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple mt-0"
:name="'items.' + index + '.name'"
autocomplete="off"
required="required"
@ -65,7 +65,7 @@
<td class="px-3 py-3 border-b-0 description">
@if (! $hideItemDescription)
<textarea
class="form-element mt-1.5 resize-none"
class="w-full text-sm px-3 py-2.5 mt-1.5 rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple resize-none"
style="height:42px;"
:ref="'items-' + index + '-description'"
placeholder="{{ trans('items.enter_item_description') }}"
@ -94,7 +94,7 @@
type="number"
min="0"
:ref="'items-' + index + '-quantity'"
class="form-element mt-0 text-right input-number-disabled"
class="w-full text-sm px-3 py-2.5 mt-0 text-right rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple input-number-disabled"
:name="'items.' + index + '.quantity'"
autocomplete="off"
required="required"
@ -233,7 +233,7 @@
<input type="number"
min="0"
placeholder="Discount"
class="form-element text-center mt-0"
class="w-full text-sm px-3 py-2.5 mt-0 text-center rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple"
:name="'items.' + index + '.discount'"
autocomplete="off"
required="required"

View File

@ -4,7 +4,7 @@
label="{{ trans_choice('general.notes', 2) }}"
:value="$notes"
not-required
class="form-element border-0 bg-transparent px-0 rounded-none resize-none"
class="w-full text-sm px-0 py-2.5 mt-1 border-light-gray text-black placeholder-light-gray disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple border-0 bg-transparent rounded-none resize-none"
form-label-class="lg:text-lg"
form-group-class="border-b pb-2 mb-3.5"
rows="1"