mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-21 02:04:26 +08:00
modify style
This commit is contained in:
@@ -32,11 +32,13 @@ input[type=number] {
|
|||||||
:root {
|
:root {
|
||||||
--default-icon-color: var(--v-theme-on-surface);
|
--default-icon-color: var(--v-theme-on-surface);
|
||||||
--v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
--v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
||||||
|
--v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
:root .v-theme--dark {
|
:root .v-theme--dark {
|
||||||
--default-icon-color: var(--v-theme-on-surface);
|
--default-icon-color: var(--v-theme-on-surface);
|
||||||
--v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
--v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
||||||
|
--v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
.pin-codes-input {
|
.pin-codes-input {
|
||||||
@@ -59,6 +61,10 @@ input[type=number] {
|
|||||||
background-color: var(--v-expand-panel-title-bg);
|
background-color: var(--v-expand-panel-title-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card-title-with-bg > .v-card-item {
|
||||||
|
background-color: var(--v-card-title-bg);
|
||||||
|
}
|
||||||
|
|
||||||
.auth-logo {
|
.auth-logo {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|||||||
@@ -99,7 +99,7 @@
|
|||||||
|
|
||||||
<v-row class="pl-4 pr-8" v-if="categorizedAccounts[activeAccountCategory.id] && categorizedAccounts[activeAccountCategory.id].accounts && categorizedAccounts[activeAccountCategory.id].accounts.length">
|
<v-row class="pl-4 pr-8" v-if="categorizedAccounts[activeAccountCategory.id] && categorizedAccounts[activeAccountCategory.id].accounts && categorizedAccounts[activeAccountCategory.id].accounts.length">
|
||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
<v-card border class="mb-8 h-auto" :key="account.id"
|
<v-card border class="card-title-with-bg mb-8 h-auto" :key="account.id"
|
||||||
v-for="account in categorizedAccounts[activeAccountCategory.id].accounts"
|
v-for="account in categorizedAccounts[activeAccountCategory.id].accounts"
|
||||||
v-show="showHidden || !account.hidden">
|
v-show="showHidden || !account.hidden">
|
||||||
<template #title>
|
<template #title>
|
||||||
|
|||||||
Reference in New Issue
Block a user