|
|
|
@@ -1,5 +1,5 @@ |
|
|
|
<template> |
|
|
|
<div @click="$emit('select', $el)" class="statblock"> |
|
|
|
<div @click="$emit('select', $el)" @keyup.enter="$emit('select', $el)" class="statblock" tabindex="0"> |
|
|
|
<div class="statblock-shader statblock-shader-hover"></div> |
|
|
|
<div class="statblock-shader statblock-shader-selected marching-ants"></div> |
|
|
|
<div class="statblock-shader statblock-shader-selected-ally marching-ants"></div> |
|
|
|
@@ -180,6 +180,7 @@ a { |
|
|
|
overflow: hidden; |
|
|
|
background: none; |
|
|
|
border-radius: 10px; |
|
|
|
outline: none; |
|
|
|
} |
|
|
|
|
|
|
|
.stat-line { |
|
|
|
@@ -351,7 +352,8 @@ a { |
|
|
|
opacity: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.statblock:hover .statblock-shader-hover { |
|
|
|
.statblock:hover .statblock-shader-hover, |
|
|
|
.statblock:focus .statblock-shader-hover { |
|
|
|
background: white; |
|
|
|
opacity: 0.20; |
|
|
|
} |
|
|
|
|