Cosmetics

pull/310/head
cagataycivici 2020-05-02 12:20:18 +03:00
parent 306e7b573d
commit de2c8e9216
5 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
<template>
<button :class="buttonClass" v-on="$listeners">
<span v-if="icon" :class="iconClass"></span>
<span class="p-button-text ">{{label||'&nbsp;'}}</span>
<span class="p-button-text">{{label||'&nbsp;'}}</span>
</button>
</template>

View File

@ -2,11 +2,11 @@
<div class="p-dataview-layout-options p-selectbutton p-buttonset">
<button :class="buttonListClass" @click="changeLayout('list')" type="button">
<i class="pi pi-bars"></i>
<span class="p-button-text ">&nbsp;</span>
<span class="p-button-text">&nbsp;</span>
</button>
<button :class="buttonGridClass" @click="changeLayout('grid')" type="button">
<i class="pi pi-th-large"></i>
<span class="p-button-text ">&nbsp;</span>
<span class="p-button-text">&nbsp;</span>
</button>
</div>
</template>

View File

@ -12,7 +12,7 @@
</label>
</div>
<div class="p-multiselect-trigger">
<span class="p-multiselect-trigger-icon pi pi-chevron-down "></span>
<span class="p-multiselect-trigger-icon pi pi-chevron-down"></span>
</div>
<transition name="p-input-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave">
<div ref="overlay" class="p-multiselect-panel p-component" v-if="overlayVisible">

View File

@ -5,7 +5,7 @@
:tabindex="isOptionDisabled(option) ? null : '0'" @focus="onFocus($event, i)" @blur="onBlur($event)" :aria-labelledby="ariaLabelledBy"
:class="['p-button p-component p-button-text-only', {'p-highlight': isSelected(option), 'p-disabled': isOptionDisabled(option), 'p-focus': (i === focusedIndex)}]">
<slot name="option" :option="option" :index="i">
<span class="p-button-text ">{{getOptionLabel(option)}}</span>
<span class="p-button-text">{{getOptionLabel(option)}}</span>
</slot>
</div>
</div>

View File

@ -1,7 +1,7 @@
<template>
<div :class="buttonClass" @click="onClick($event)" role="checkbox" :aria-labelledby="ariaLabelledBy" :aria-checked="value" :tabindex="$attrs.disabled ? null : '0'">
<span v-if="hasIcon" :class="iconClass"></span>
<span class="p-button-text p-unselectable-text ">{{label}}</span>
<span class="p-button-text p-unselectable-text">{{label}}</span>
</div>
</template>