Browse Source

Disable names/bars/etc. by default; always show for selected entities

tags/v0.1.0
Fen Dweller 5 years ago
parent
commit
38e0179f60
2 changed files with 9 additions and 7 deletions
  1. +4
    -2
      macrovision.css
  2. +5
    -5
      macrovision.html

+ 4
- 2
macrovision.css View File

@@ -57,7 +57,8 @@ body {
transition: all 0s;
}

body.toggle-entity-name .entity-name {
body.toggle-entity-name .entity-name,
.entity-box.selected .entity-name {
display: inline;
}

@@ -451,7 +452,8 @@ input ~ label {
user-select: none;
}

body.toggle-height-bars .height-bar {
body.toggle-height-bars .height-bar,
.entity-box.selected .height-bar {
display: block;
}



+ 5
- 5
macrovision.html View File

@@ -27,7 +27,7 @@
<link rel="icon" href="https://crux.sexy/images/macrovision.ico">
</head>

<body class="toggle-bottom-name toggle-entity-name toggle-height-bars toggle-entity-glow">
<body class="">
<div id="help">
<h1>Discord</h1>
<p>
@@ -109,19 +109,19 @@
</label>
</div>
<div class="options-row">
<input type="checkbox" id="options-world-show-names" checked=true>
<input type="checkbox" id="options-world-show-names">
<label for="options-world-show-names">Names over entities</label>
</div>
<div class="options-row">
<input type="checkbox" id="options-world-show-bottom-names" checked=true>
<input type="checkbox" id="options-world-show-bottom-names">
<label for="options-world-show-bottom-names">Names at bottom</label>
</div>
<div class="options-row">
<input type="checkbox" id="options-world-show-height-bars" checked=true>
<input type="checkbox" id="options-world-show-height-bars">
<label for="options-world-show-height-bars">Height bars</label>
</div>
<div class="options-row">
<input type="checkbox" id="options-world-show-entity-glow" checked=true>
<input type="checkbox" id="options-world-show-entity-glow">
<label for="options-world-show-entity-glow">Glowing edges</label>
</div>



Loading…
Cancel
Save