Rename .noshadow to .has-no-shadow
This commit is contained in:
@ -44,7 +44,7 @@
|
||||
<img :src="userAvatar" alt="" class="avatar"/>
|
||||
<div class="dropdown is-right is-active">
|
||||
<div class="dropdown-trigger">
|
||||
<button @click.stop="userMenuActive = !userMenuActive" class="button noshadow">
|
||||
<button @click.stop="userMenuActive = !userMenuActive" class="button has-no-shadow">
|
||||
<span class="username">{{ userInfo.name !== '' ? userInfo.name : userInfo.username }}</span>
|
||||
<span class="icon is-small">
|
||||
<icon icon="chevron-down"/>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="update-notification" v-if="updateAvailable">
|
||||
<p>There is an update for Vikunja available!</p>
|
||||
<a @click="refreshApp()" class="button is-primary noshadow">Update Now</a>
|
||||
<a @click="refreshApp()" class="button is-primary has-no-shadow">Update Now</a>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
</p>
|
||||
<div class="buttons">
|
||||
<button @click="migrate" class="button is-primary">I am sure, please start migrating now!</button>
|
||||
<router-link :to="{name: 'home'}" class="button is-text has-text-danger is-inverted noshadow underline-none">Cancel</router-link>
|
||||
<router-link :to="{name: 'home'}" class="button is-text has-text-danger is-inverted has-no-shadow underline-none">Cancel</router-link>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
|
@ -19,7 +19,7 @@
|
||||
<button
|
||||
:key="'action_'+i"
|
||||
@click="action.callback"
|
||||
class="button noshadow is-small" v-for="(action, i) in props.item.data.actions">
|
||||
class="button has-no-shadow is-small" v-for="(action, i) in props.item.data.actions">
|
||||
{{ action.title }}
|
||||
</button>
|
||||
</div>
|
||||
|
@ -11,8 +11,8 @@
|
||||
<slot name="text"></slot>
|
||||
</div>
|
||||
<div class="actions">
|
||||
<button @click="$emit('close')" class="button is-text has-text-danger is-inverted noshadow underline-none">Cancel</button>
|
||||
<button @click="$emit('submit')" class="button is-primary noshadow">Do it!</button>
|
||||
<button @click="$emit('close')" class="button is-text has-text-danger is-inverted has-no-shadow underline-none">Cancel</button>
|
||||
<button @click="$emit('submit')" class="button is-primary has-no-shadow">Do it!</button>
|
||||
</div>
|
||||
</slot>
|
||||
</div>
|
||||
|
@ -44,7 +44,7 @@
|
||||
<input :value="getShareLink(s.hash)" class="input" readonly type="text"/>
|
||||
</div>
|
||||
<div class="control">
|
||||
<a @click="copy(getShareLink(s.hash))" class="button is-primary noshadow" v-tooltip="'Copy to clipboard'">
|
||||
<a @click="copy(getShareLink(s.hash))" class="button is-primary has-no-shadow" v-tooltip="'Copy to clipboard'">
|
||||
<span class="icon">
|
||||
<icon icon="paste"/>
|
||||
</span>
|
||||
|
@ -124,7 +124,7 @@
|
||||
v-model="newTaskTitle"
|
||||
/>
|
||||
</transition>
|
||||
<button @click="showCreateNewTask" class="button is-primary noshadow">
|
||||
<button @click="showCreateNewTask" class="button is-primary has-no-shadow">
|
||||
<span class="icon is-small">
|
||||
<icon icon="plus"/>
|
||||
</span>
|
||||
|
Reference in New Issue
Block a user