This commit is contained in:
2020-10-06 18:05:43 +00:00
parent 7c5da9ff85
commit 5064946736
2 changed files with 15 additions and 5 deletions

View File

@@ -31,6 +31,8 @@ todo: chrome "Lighthouse" test against devops and implement recommendations
### SMALL QUICK ITEMS ##### ### SMALL QUICK ITEMS #####
todo: change logos from png to webp todo: change logos from png to webp
check if webp is supported e2e and on report check if webp is supported e2e and on report
todo: login page seems to fetch both logos even though only one is visible
maybe there is a v-show instead of a v-if or something?
todo: known issues has some efficiency settings for themes and good stuff to know, check it: https://github.com/vuetifyjs/vuetify/releases/tag/v2.3.0#user-content-known-issues todo: known issues has some efficiency settings for themes and good stuff to know, check it: https://github.com/vuetifyjs/vuetify/releases/tag/v2.3.0#user-content-known-issues
todo: new logos too small on large login, add a 3rd (large) size of logo to login form for xl size display todo: new logos too small on large login, add a 3rd (large) size of logo to login form for xl size display

View File

@@ -138,6 +138,7 @@ import {
faTags, faTags,
faThList, faThList,
faTicketAlt, faTicketAlt,
faTimesCircle,
faToolbox, faToolbox,
faTools, faTools,
faTrashAlt, faTrashAlt,
@@ -278,6 +279,7 @@ library.add(
faTags, faTags,
faThList, faThList,
faTicketAlt, faTicketAlt,
faTimesCircle,
faToolbox, faToolbox,
faTools, faTools,
faTrashAlt, faTrashAlt,
@@ -911,31 +913,31 @@ const CUSTOM_ICONS = {
ayiSort: { ayiSort: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {
icon: ["far", "sort"] icon: ["fas", "sort"]
} }
}, },
ayiSortAmountDown: { ayiSortAmountDown: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {
icon: ["far", "sort-amount-down"] icon: ["fas", "sort-amount-down"]
} }
}, },
ayiSortAmountUp: { ayiSortAmountUp: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {
icon: ["far", "sort-amount-up"] icon: ["fas", "sort-amount-up"]
} }
}, },
ayiSplotch: { ayiSplotch: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {
icon: ["far", "splotch"] icon: ["fas", "splotch"]
} }
}, },
ayiStamp: { ayiStamp: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {
icon: ["far", "stamp"] icon: ["fas", "stamp"]
} }
}, },
ayiSquare: { ayiSquare: {
@@ -1084,6 +1086,12 @@ const CUSTOM_ICONS = {
}, },
//VUETIFY REQUIRED ONES //VUETIFY REQUIRED ONES
//https://vuetifyjs.com/en/features/icons/#using-custom-icons //https://vuetifyjs.com/en/features/icons/#using-custom-icons
clear: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "times-circle"]
}
},
dropdown: { dropdown: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {