Update email link and button colours and sort apps in portal side bar
This commit is contained in:
parent
3641482365
commit
7c1f71745e
|
@ -9,12 +9,18 @@
|
||||||
let searchString
|
let searchString
|
||||||
let searching = false
|
let searching = false
|
||||||
|
|
||||||
$: filteredApps = $apps.filter(app => {
|
$: filteredApps = $apps
|
||||||
|
.filter(app => {
|
||||||
return (
|
return (
|
||||||
!searchString ||
|
!searchString ||
|
||||||
app.name.toLowerCase().includes(searchString.toLowerCase())
|
app.name.toLowerCase().includes(searchString.toLowerCase())
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
.sort((a, b) => {
|
||||||
|
const lowerA = a.name.toLowerCase()
|
||||||
|
const lowerB = b.name.toLowerCase()
|
||||||
|
return lowerA > lowerB ? 1 : -1
|
||||||
|
})
|
||||||
|
|
||||||
const startSearching = async () => {
|
const startSearching = async () => {
|
||||||
searching = true
|
searching = true
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #3869D4 !important;
|
color: #6E56FF !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
a img {
|
a img {
|
||||||
|
@ -109,11 +109,11 @@
|
||||||
/* Buttons ------------------------------ */
|
/* Buttons ------------------------------ */
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
background-color: #3869D4;
|
background-color: #6E56FF;
|
||||||
border-top: 10px solid #3869D4;
|
border-top: 10px solid #6E56FF;
|
||||||
border-right: 18px solid #3869D4;
|
border-right: 18px solid #6E56FF;
|
||||||
border-bottom: 10px solid #3869D4;
|
border-bottom: 10px solid #6E56FF;
|
||||||
border-left: 18px solid #3869D4;
|
border-left: 18px solid #6E56FF;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: #FFF !important;
|
color: #FFF !important;
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
|
|
|
@ -16,15 +16,11 @@
|
||||||
cellspacing="0"
|
cellspacing="0"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
width="32"
|
|
||||||
height="32"
|
height="32"
|
||||||
style="margin-right:16px; vertical-align: middle;"
|
style="margin-right:16px; vertical-align: middle;"
|
||||||
alt="Budibase Logo"
|
alt="Budibase Logo"
|
||||||
src="https://res.cloudinary.com/daog6scxm/image/upload/v1696515725/Branding/Assets/Symbol/RGB/Full%20Colour/Budibase_Symbol_RGB_FullColour_cbqvha_1_byv8fd.png"
|
src="https://res.cloudinary.com/daog6scxm/image/upload/v1696521007/Branding/Assets/Logo/RGB/Full%20Colour/Budibase_Logo_RGB_FullColour_Negative_e9yziz_1_u6oxzg.png"
|
||||||
/>
|
/>
|
||||||
<strong style="vertical-align: middle; font-size: 1.1em">
|
|
||||||
Budibase
|
|
||||||
</strong>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue