Expanded edit fields. Added revision history to scene and user pages.

This commit is contained in:
2024-10-06 02:45:56 +02:00
parent 8bf9e22b39
commit 8f843f321d
57 changed files with 1664 additions and 156 deletions

View File

@@ -85,11 +85,13 @@ watch(() => props.scene, () => { newActors.value = []; });
&.disabled {
.actor {
color: var(--shadow);
background: var(--glass-weak-50);
color: var(--glass-strong-10);
.remove,
.add {
background: var(--shadow-weak-40);
fill: var(--shadow-weak-30);
background: var(--shadow-weak-50);
}
}
@@ -103,9 +105,14 @@ watch(() => props.scene, () => { newActors.value = []; });
align-items: center;
margin-left: .25rem;
&:hover {
box-shadow: 0 0 3px var(--shadow-weak-20);
}
.icon {
height: 100%;
padding: 0 .5rem;
background: var(--success);
fill: var(--text-light);
}
}
@@ -114,8 +121,9 @@ watch(() => props.scene, () => { newActors.value = []; });
.actor {
display: flex;
align-items: stretch;
background: var(--glass-weak-30);
border-radius: .25rem;
background: var(--background);
box-shadow: 0 0 3px var(--shadow-weak-30);
&.deleted {
color: var(--glass);
@@ -129,8 +137,8 @@ watch(() => props.scene, () => { newActors.value = []; });
.add {
height: auto;
padding: .25rem .3rem;
fill: var(--highlight-strong-10);
border-radius: .25rem;
fill: var(--highlight-strong-10);
&:hover {
fill: var(--text-light);
@@ -139,11 +147,19 @@ watch(() => props.scene, () => { newActors.value = []; });
}
.remove {
background: var(--error);
fill: var(--error);
&:hover {
background: var(--error);
}
}
.add {
background: var(--success);
fill: var(--success);
&:hover {
background: var(--success);
}
}
}