Merge pull request #2509 from brkcvn/unused-classname
Old classnames ejected
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div v-if="! rowInput" class="form-group"
|
||||
<div v-if="! rowInput"
|
||||
:class="[{'has-error': error}, {'required': required}, {'readonly': readonly}, {'disabled': disabled}, col]">
|
||||
<label v-if="title" :for="name" class="form-control-label">{{ title }}</label>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
:class="[{'has-error': error}, {'required': required}, {'readonly': readonly}, {'disabled': disabled}, col]">
|
||||
<label v-if="title" :for="name" class="form-control-label">{{ title }}</label>
|
||||
|
||||
<div v-if="icon" class="input-group input-group-merge" :class="group_class">
|
||||
<div v-if="icon" :class="group_class">
|
||||
<div v-if="icon" class="input-group-prepend">
|
||||
<span class="input-group-text">
|
||||
<i :class="'fa fa-' + icon"></i>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="form-group" :class="col">
|
||||
<div :class="col">
|
||||
<label :for="name" class="form-control-label">{{ text }}</label>
|
||||
|
||||
<div class="tab-pane tab-example-result fade show active" role="tabpanel" aria-labelledby="-component-tab">
|
||||
|
@ -7,7 +7,7 @@
|
||||
<template #modal-body>
|
||||
<div class="py-1 px-5 bg-body">
|
||||
<div class="grid sm:grid-cols-6 gap-x-8 gap-y-6 my-3.5">
|
||||
<div class="form-group sm:col-span-3">
|
||||
<div class="sm:col-span-3">
|
||||
<base-input
|
||||
required
|
||||
class="required"
|
||||
@ -20,7 +20,7 @@
|
||||
</base-input>
|
||||
</div>
|
||||
|
||||
<div class="form-group sm:col-span-3">
|
||||
<div class="sm:col-span-3">
|
||||
<base-input
|
||||
required
|
||||
class="required"
|
||||
@ -40,7 +40,7 @@
|
||||
</base-input>
|
||||
</div>
|
||||
|
||||
<div class="form-group sm:col-span-3">
|
||||
<div class="sm:col-span-3">
|
||||
<base-input :label="text.width">
|
||||
<el-select
|
||||
v-model="form.width" filterable
|
||||
@ -54,7 +54,7 @@
|
||||
</base-input>
|
||||
</div>
|
||||
|
||||
<div class="form-group sm:col-span-3">
|
||||
<div class="sm:col-span-3">
|
||||
<base-input
|
||||
v-model="form.sort"
|
||||
:label="text.sort"
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="form-group" :class="[
|
||||
<div :class="[
|
||||
{'has-error': error},
|
||||
formClasses
|
||||
]">
|
||||
@ -9,7 +9,7 @@
|
||||
</label>
|
||||
</slot>
|
||||
<div class="relative" :class="[
|
||||
{'input-group input-group-merge': hasIcon},
|
||||
{'form-icon': hasIcon},
|
||||
{'focused': focused},
|
||||
{'input-group-alternative': alternative},
|
||||
{'has-label': label || $slots.label},
|
||||
|
Reference in New Issue
Block a user