diff --git a/web/dynmap_style.css b/web/dynmap_style.css index 7ada8b37..22f617aa 100644 --- a/web/dynmap_style.css +++ b/web/dynmap_style.css @@ -174,6 +174,19 @@ body { transition: all 0.6s ease-in-out; } +.dynmap .sidebar .panel > .pin { + position: absolute; + right: 4px; + top: 4px; + width: 16px; + height: 16px; + background-image: url(window_unpinned.png); +} + +.dynmap .sidebar.pinned .panel > .pin { + background-image: url(window_pinned.png); +} + /* magic and metrics */ .dynmap .sidebar:hover, diff --git a/web/window_pinned.png b/web/window_pinned.png new file mode 100644 index 00000000..586de30c Binary files /dev/null and b/web/window_pinned.png differ diff --git a/web/window_unpinned.png b/web/window_unpinned.png new file mode 100644 index 00000000..f84684c1 Binary files /dev/null and b/web/window_unpinned.png differ