Iterated on card color scheme

This commit is contained in:
Stefan Zermatten
2021-03-26 11:06:52 +02:00
parent 2c448d1748
commit 7d4356592a
5 changed files with 19 additions and 6 deletions

View File

@@ -246,6 +246,6 @@ export default {
}
.character-sheet-fab {
bottom: -24px;
margin-right: -8px;
right: 8px;
}
</style>

View File

@@ -6,7 +6,7 @@
<v-slide-y-reverse-transition
group
hide-on-leave
class="card-background flex layout column reverse align-end pa-3"
class="card-raised-background flex layout column reverse align-end pa-3"
style="overflow: auto;"
>
<log-entry

View File

@@ -1,5 +1,5 @@
<template lang="html">
<div>
<div class="card-raised-background">
<v-container
fluid
grid-list-lg

View File

@@ -8,7 +8,10 @@
<v-toolbar-title slot="toolbar">
Add Library Content
</v-toolbar-title>
<property-selector @select="type => $emit('input', type)" />
<property-selector
slot="unwrapped-content"
@select="type => $emit('input', type)"
/>
</dialog-base>
<div
v-show="value"

View File

@@ -1,10 +1,20 @@
.theme--dark.v-sheet {
.theme--dark.v-sheet,
.theme--dark.v-expansion-panels .v-expansion-panel {
background-color: #303030;
}
.theme--dark .card-background {
background: #000;
}
.card-background {
.theme--light .card-background {
background: #f6f6f6;
}
.theme--dark .card-raised-background {
background: #1d1d1d;
}
.theme--light .card-raised-background {
background: #fafafa;
}