Skip to content

Commit

Permalink
Theme fine-tuning #1
Browse files Browse the repository at this point in the history
  • Loading branch information
cioraneanu committed May 20, 2024
1 parent 13c159a commit d348a22
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion front/assets/styles/theme-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -333,5 +333,5 @@
}

.van-theme-dark .svg-add-icon-plus {
fill: #1f212a;
fill: #fff;
}
8 changes: 7 additions & 1 deletion front/assets/styles/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@ body {

.account-select-section-title {
font-size: 14px;
background: #eee;
/*background: #eee;*/
background: var(--van-background-2-5);
padding: 10px;
font-weight: 600;
}
Expand Down Expand Up @@ -933,5 +934,10 @@ body {
}

.svg-add-icon-plus {
/*fill: #1b5e20;*/
fill: #1b5e20;
}

.van-swipe-cell .van-cell:after {
border-bottom: none;
}
2 changes: 1 addition & 1 deletion front/components/select/account-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<template #top-right>
<van-button size="small" @click="onRefresh" class="">
<icon-refresh :strokeWidth="1" size="14" color="black" />
<app-icon :icon="TablerIconConstants.refresh" :stroke="1.7" size="14" />
</van-button>
</template>

Expand Down
2 changes: 1 addition & 1 deletion front/components/select/category-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
>
<template #top-right>
<van-button size="small" @click="onRefresh" class="">
<icon-refresh :strokeWidth="1" size="14" color="black" />
<app-icon :icon="TablerIconConstants.refresh" :stroke="1.7" size="14" />
</van-button>
</template>

Expand Down
2 changes: 1 addition & 1 deletion front/components/select/currency-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
>
<template #top-right>
<van-button size="small" @click="onRefresh" class="">
<icon-refresh :strokeWidth="1" size="14" color="black" />
<app-icon :icon="TablerIconConstants.refresh" :stroke="1.7" size="14" />
</van-button>
</template>

Expand Down
2 changes: 1 addition & 1 deletion front/components/select/tag-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
>
<template #top-right>
<van-button size="small" @click="onRefresh" class="">
<app-icon icon="IconRefresh" :stroke="1" size="14" color="black" />
<app-icon :icon="TablerIconConstants.refresh" :stroke="1.7" size="14" />
</van-button>

<van-button size="small" @click="onToggleDisplayMode" class="">
Expand Down
1 change: 1 addition & 0 deletions front/constants/TablerIconConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export const icons = {
repeaterHandler: 'IconMenu2',

lastSync: 'IconRefresh',
refresh: 'IconRefresh',

leftArrow: 'IconArrowLeft',
rightArrow: 'IconArrowRight',
Expand Down
2 changes: 1 addition & 1 deletion front/pages/settings/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<van-cell-group inset>
<div class="van-cell-group-title mb-0">Credits</div>
<div class="text-muted text-size-12 p-20 pt-10">
<div>- Developed by Mihai Cioraneanu - <a :href="REPO_URL">Source on GitHub</a></div>
<div>- Developed by Mihai Cioraneanu - <a :href="REPO_URL">GitHub</a></div>
<br />
<div>- Using <a href="https://laravel.com/" target="_blank">Laravel</a> and <a href="https://nuxt.com/" target="_blank">Nuxt</a></div>
<div>- Consuming the <a href="https://www.firefly-iii.org" target="_blank">Firefly III</a> REST API</div>
Expand Down

0 comments on commit d348a22

Please sign in to comment.