diff --git a/src/components/Combat.vue b/src/components/Combat.vue index fae871e..cd8dc65 100644 --- a/src/components/Combat.vue +++ b/src/components/Combat.vue @@ -1,11 +1,11 @@ @@ -298,27 +297,29 @@ a { } .statblock[data-active] .statblock-shader-selected { - background: white; - opacity: 0.15; + border: 4px dashed red; + border-radius: 8px; + width: calc(100% - 8px); + height: calc(100% - 8px); + opacity: 0.75; } .statblock[data-active-ally] .statblock-shader-selected-ally { - background: #88f; - opacity: 0.20; + border: 4px dashed #f8f; + border-radius: 8px; + width: calc(100% - 8px); + height: calc(100% - 8px); + opacity: 0.75; } .statblock[data-current-turn] .statblock-shader-current-turn { border: 4px dashed white; border-radius: 8px; width: calc(100% - 8px); - heighT: calc(100% - 8px); + height: calc(100% - 8px); opacity: 0.75; } -.statblock[data-disabled] { - color: #888; -} - .statblock-shader-dead i { font-size: 100px; position: absolute; @@ -331,7 +332,6 @@ a { opacity: 0.50; } -.statblock:hover[data-disabled] .statblock-shader-hover, .statblock:hover[data-active] .statblock-shader-hover { opacity: 0; } @@ -345,6 +345,14 @@ a { display: none; } +.statblock .if-ally { + display: none; +} + +.statblock[data-ally] .if-ally { + display: block; +} + .statblock-status-icons { display: flex; justify-content: space-evenly;