| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-10-19 20:00:36 +0200 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-10-19 20:00:36 +0200 | 
| commit | 2fe4169e34b061b3fea3e248f230fa8702901c3f (patch) | |
| tree | 370232bce4d6ab0044928c52e6e8d185041aa643 /src/battlemap/www | |
| parent | 7ef97d8cd7a62fe40701842286f28743c237cedb (diff) | |
Fixes movement indicators, borks attack ones.
Diffstat (limited to 'src/battlemap/www')
| -rw-r--r-- | src/battlemap/www/index.html | 53 | 
1 files changed, 53 insertions, 0 deletions
| diff --git a/src/battlemap/www/index.html b/src/battlemap/www/index.html index e8bff19..21c6a27 100644 --- a/src/battlemap/www/index.html +++ b/src/battlemap/www/index.html @@ -58,6 +58,7 @@        {           z-index: 1;        } +        .asset-marker-icon-can-go-to        {           background-color:rgba(0,0,0,0.5); @@ -67,6 +68,58 @@        {           background-color:rgba(0,0,0,0.7);        } + +      .battlemap-path-icon +      { +         z-index: 3; +         color: white; +      } + +      .asset-path-icon-NR:before, +      .asset-path-icon-LR:before, +      .asset-path-icon-RR:before, +      .asset-path-icon-UR:before, +      .asset-path-icon-DR:before +      { +         content: "}"; +      } + +      .asset-path-icon-NL:before, +      .asset-path-icon-LL:before, +      .asset-path-icon-RL:before, +      .asset-path-icon-UL:before, +      .asset-path-icon-DL:before +      { +         content: "{"; +      } + +      .asset-path-icon-NU:before, +      .asset-path-icon-LU:before, +      .asset-path-icon-RU:before, +      .asset-path-icon-UU:before, +      .asset-path-icon-DU:before +      { +         content: "^"; +      } + +      .asset-path-icon-ND:before, +      .asset-path-icon-LD:before, +      .asset-path-icon-RD:before, +      .asset-path-icon-UD:before, +      .asset-path-icon-DD:before +      { +         content: "v"; +      } + +      .asset-path-icon-markN:before, +      .asset-path-icon-markL:before, +      .asset-path-icon-markU:before, +      .asset-path-icon-markD:before, +      .asset-path-icon-markR:before +      { +         content: "x"; +      } +     </style>     </head>     <body> | 


