add .input class to all inputs
This commit is contained in:
parent
c34590c439
commit
d2a74ea1a2
41 changed files with 108 additions and 98 deletions
|
|
@ -39,10 +39,11 @@
|
|||
:aria-checked="choices[index]"
|
||||
@click="activateOption(index)"
|
||||
>
|
||||
<!-- TODO: USE CHECKBOX -->
|
||||
<input
|
||||
v-if="poll.multiple"
|
||||
type="checkbox"
|
||||
class="poll-checkbox"
|
||||
class="input poll-checkbox"
|
||||
:disabled="loading"
|
||||
:value="index"
|
||||
>
|
||||
|
|
@ -51,6 +52,7 @@
|
|||
type="radio"
|
||||
:disabled="loading"
|
||||
:value="index"
|
||||
class="input"
|
||||
>
|
||||
<label class="option-vote">
|
||||
<RichContent
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
:id="`poll-${index}`"
|
||||
v-model="options[index]"
|
||||
size="1"
|
||||
class="poll-option-input"
|
||||
class="input poll-option-input"
|
||||
type="text"
|
||||
:placeholder="$t('polls.option')"
|
||||
:maxlength="maxLength"
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
<input
|
||||
v-model="expiryAmount"
|
||||
type="number"
|
||||
class="expiry-amount hide-number-spinner"
|
||||
class="input expiry-amount hide-number-spinner"
|
||||
:min="minExpirationInCurrentUnit"
|
||||
:max="maxExpirationInCurrentUnit"
|
||||
@change="expiryAmountChange"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue