Some initial work on replacing icons with FA5
This commit is contained in:
parent
350f25016f
commit
3814218277
34 changed files with 528 additions and 245 deletions
|
@ -2,6 +2,14 @@
|
|||
import statusPosterService from '../../services/status_poster/status_poster.service.js'
|
||||
import fileSizeFormatService from '../../services/file_size_format/file_size_format.js'
|
||||
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import { faUpload, faCircleNotch } from '@fortawesome/free-solid-svg-icons'
|
||||
|
||||
library.add(
|
||||
faUpload,
|
||||
faCircleNotch
|
||||
)
|
||||
|
||||
const mediaUpload = {
|
||||
data () {
|
||||
return {
|
||||
|
|
|
@ -7,13 +7,15 @@
|
|||
class="label"
|
||||
:title="$t('tool_tip.media_upload')"
|
||||
>
|
||||
<i
|
||||
<FAIcon
|
||||
v-if="uploading"
|
||||
class="progress-icon icon-spin4 animate-spin"
|
||||
class="progress-icon animate-spin"
|
||||
icon="circle-notch"
|
||||
/>
|
||||
<i
|
||||
<FAIcon
|
||||
v-if="!uploading"
|
||||
class="new-icon icon-upload"
|
||||
class="new-icon"
|
||||
icon="upload"
|
||||
/>
|
||||
<input
|
||||
v-if="uploadReady"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue