minor: setting notes to reduce description length

This commit is contained in:
Index 2024-06-28 01:21:14 -05:00
parent f7fd5bde11
commit f434803f46
3 changed files with 18 additions and 3 deletions

View file

@ -51,7 +51,7 @@ h2 span.indent {
font-weight: bold; font-weight: bold;
} }
.setting-container .desc, .setting-container .warning { .setting-container .desc, .setting-container .warning, .setting-container .note {
display: block; display: block;
width: 75%; width: 75%;
} }
@ -187,12 +187,18 @@ dialog .modal-body p:first-child {
border-radius: inherit; border-radius: inherit;
} }
.warning { .setting-container .warning {
font-size: 0.8rem; font-size: 0.8rem;
color: orange; color: orange;
font-weight: lighter; font-weight: lighter;
} }
.setting-container .note {
font-size: 0.8rem;
color: #439eff;
font-weight: lighter;
}
.card { .card {
--bs-card-border-color: #1e1e1e; --bs-card-border-color: #1e1e1e;
--bs-card-bg: #121212; --bs-card-bg: #121212;

View file

@ -435,7 +435,12 @@
<button class="btn btn-sm toggle-btn" data-setting="StoreOwnTagOn">Toggle</button> <button class="btn btn-sm toggle-btn" data-setting="StoreOwnTagOn">Toggle</button>
</div> </div>
<br /> <br />
<span class="desc">Quickly see if you own the item at a glance with a little tag in the top left corner of item cards on the main store page! (if the star is blue, then the item is not a collectible - however if the star is yellow/orange then the item is a collectible and you can hover on it to see your serial)</span> <span class="desc">
Quickly see if you own the item at a glance with a little tag in the top left corner of item cards on the main store page!
</span>
<span class="note">
* If the star is yellow/orange, that means the item is a collectible and hovering on the star will show your serial.
</span>
</div> </div>
<div class="setting-container" id="theme-creator"> <div class="setting-container" id="theme-creator">
<span class="indicator">&nbsp;</span> <span class="indicator">&nbsp;</span>
@ -577,6 +582,9 @@
</div> </div>
<br /> <br />
<span class="desc">List all the users that have more than 1 copy of a collectible!</span> <span class="desc">List all the users that have more than 1 copy of a collectible!</span>
<span class="note mb-3">
* The hoarders list is limited to <span id="HoardersList-pageLimit"></span> pages to reduce chance of ratelimiting and improve how fast the list loads
</span>
<span class="form-check form-switch"> <span class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="hoarders-list-avatars" data-setting="AvatarsEnabled" data-parent="HoardersList" /> <input class="form-check-input" type="checkbox" role="switch" id="hoarders-list-avatars" data-setting="AvatarsEnabled" data-parent="HoardersList" />
<label class="form-check-label" for="hoarders-list-avatars"> <label class="form-check-label" for="hoarders-list-avatars">

View file

@ -13,6 +13,7 @@ var Utilities;
document.getElementById('PinnedGames-limit').innerText = Utilities.Limits.PinnedGames; document.getElementById('PinnedGames-limit').innerText = Utilities.Limits.PinnedGames;
//document.getElementById('ImprovedFrLists-limit').innerText = Utilities.Limits.ImprovedFrLists; //document.getElementById('ImprovedFrLists-limit').innerText = Utilities.Limits.ImprovedFrLists;
//document.getElementById('ItemWishlist-limit').innerText = Utilities.Limits.ItemWishlist; //document.getElementById('ItemWishlist-limit').innerText = Utilities.Limits.ItemWishlist;
document.getElementById('HoardersList-pageLimit').innerText = Utilities.Limits.HoardersListPages;
})(); })();
// Handle buttons at the bottom of the page // Handle buttons at the bottom of the page