diff --git a/src/desktop-main.js b/src/desktop-main.js index efd2059c..4ac4b6ec 100644 --- a/src/desktop-main.js +++ b/src/desktop-main.js @@ -227,6 +227,9 @@ const vuetify = createVuetify({ VSnackbar: { timeout: 3000 }, + VTable: { + hover: true + }, VTabs: { color: 'primary', VSlideGroup: { diff --git a/src/styles/desktop/global.scss b/src/styles/desktop/global.scss index 218ac8c3..8eb8756c 100644 --- a/src/styles/desktop/global.scss +++ b/src/styles/desktop/global.scss @@ -109,6 +109,30 @@ input[type=number] { th { background: rgb(var(--v-table-header-background)) !important; } + + tr:nth-child(even) { + background: #fcfcfc; + } + + tr.even-row { + background: #fcfcfc; + } + + tbody.has-bottom-border > tr:last-child > td { + border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity)); + } +} + +.v-theme--dark { + .v-table { + tr:nth-child(even) { + background: #161616; + } + + tr.even-row { + background: #161616; + } + } } .right-bottom-icon .v-badge__badge { @@ -126,6 +150,10 @@ input[type=number] { color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)); } +.text-caption { + color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity)); +} + .v-label { &:not(.v-field-label--floating) { color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)); diff --git a/src/views/desktop/AboutPage.vue b/src/views/desktop/AboutPage.vue index 07b6387c..c680081f 100644 --- a/src/views/desktop/AboutPage.vue +++ b/src/views/desktop/AboutPage.vue @@ -5,26 +5,26 @@ - {{ $t('Version') }} + {{ $t('Version') }} - {{ version }} + {{ version }} - {{ $t('Build Time') }} + {{ $t('Build Time') }} - {{ buildTime }} + {{ buildTime }} - {{ $t('Official Website') }} + {{ $t('Official Website') }} - + https://github.com/mayswind/ezbookkeeping diff --git a/src/views/desktop/AccountsPage.vue b/src/views/desktop/AccountsPage.vue index 660a1cd6..282d1e2d 100644 --- a/src/views/desktop/AccountsPage.vue +++ b/src/views/desktop/AccountsPage.vue @@ -6,24 +6,24 @@
{{ $t('Net assets') }} -

+

{{ netAssets }} - +

{{ $t('Total liabilities') }} -

+

{{ totalLiabilities }} - +

{{ $t('Total assets') }} -

+

{{ totalAssets }} - +

@@ -116,10 +116,10 @@