Iterated on card color scheme
This commit is contained in:
@@ -246,6 +246,6 @@ export default {
|
|||||||
}
|
}
|
||||||
.character-sheet-fab {
|
.character-sheet-fab {
|
||||||
bottom: -24px;
|
bottom: -24px;
|
||||||
margin-right: -8px;
|
right: 8px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<v-slide-y-reverse-transition
|
<v-slide-y-reverse-transition
|
||||||
group
|
group
|
||||||
hide-on-leave
|
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;"
|
style="overflow: auto;"
|
||||||
>
|
>
|
||||||
<log-entry
|
<log-entry
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div>
|
<div class="card-raised-background">
|
||||||
<v-container
|
<v-container
|
||||||
fluid
|
fluid
|
||||||
grid-list-lg
|
grid-list-lg
|
||||||
|
|||||||
@@ -8,7 +8,10 @@
|
|||||||
<v-toolbar-title slot="toolbar">
|
<v-toolbar-title slot="toolbar">
|
||||||
Add Library Content
|
Add Library Content
|
||||||
</v-toolbar-title>
|
</v-toolbar-title>
|
||||||
<property-selector @select="type => $emit('input', type)" />
|
<property-selector
|
||||||
|
slot="unwrapped-content"
|
||||||
|
@select="type => $emit('input', type)"
|
||||||
|
/>
|
||||||
</dialog-base>
|
</dialog-base>
|
||||||
<div
|
<div
|
||||||
v-show="value"
|
v-show="value"
|
||||||
|
|||||||
@@ -1,10 +1,20 @@
|
|||||||
.theme--dark.v-sheet {
|
.theme--dark.v-sheet,
|
||||||
|
.theme--dark.v-expansion-panels .v-expansion-panel {
|
||||||
background-color: #303030;
|
background-color: #303030;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme--dark .card-background {
|
.theme--dark .card-background {
|
||||||
background: #000;
|
background: #000;
|
||||||
}
|
}
|
||||||
.card-background {
|
|
||||||
|
.theme--light .card-background {
|
||||||
|
background: #f6f6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme--dark .card-raised-background {
|
||||||
|
background: #1d1d1d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme--light .card-raised-background {
|
||||||
background: #fafafa;
|
background: #fafafa;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user