From 42e2c4e2b5289863c87d48cc6d1961c13f39e4f4 Mon Sep 17 00:00:00 2001 From: mstoeck3 Date: Thu, 22 Jan 2026 16:03:38 +0100 Subject: [PATCH] hfs+ update --- webroot/css/main.css | 56 +++- webroot/index.html | 2 +- webroot/js/filesystems/hfsplus.js | 411 ++++++++++++++++++++++++++++++ webroot/js/main.js | 4 +- 4 files changed, 470 insertions(+), 3 deletions(-) create mode 100644 webroot/js/filesystems/hfsplus.js diff --git a/webroot/css/main.css b/webroot/css/main.css index 89af14e..72c1f81 100644 --- a/webroot/css/main.css +++ b/webroot/css/main.css @@ -234,4 +234,58 @@ h1 { .error { color: #ff8888; font-style: italic; -} \ No newline at end of file +} + +/* Info sections and boxes for filesystem-specific notes */ +.info-section { + background-color: #2a2a2a; + border: 1px solid #404040; + border-radius: 6px; + padding: 15px; + margin-bottom: 20px; +} + +.info-section h2 { + color: #ffaa44; + margin-bottom: 12px; + font-size: 1.1em; +} + +.info-section h3 { + color: #66aaff; + margin-top: 12px; + margin-bottom: 8px; + font-size: 1em; +} + +.info-box { + background-color: #1a1a1a; + border-left: 3px solid #ffaa44; + padding: 12px; + margin-bottom: 10px; + border-radius: 4px; +} + +.info-box:last-child { + margin-bottom: 0; +} + +.info-box p { + margin-bottom: 6px; +} + +.info-box p:last-child { + margin-bottom: 0; +} + +.info-box code { + background-color: #2a2a2a; + padding: 2px 6px; + border-radius: 3px; + color: #88ff88; + font-family: 'Consolas', monospace; +} + +.info-box strong { + color: #ffaa44; +} diff --git a/webroot/index.html b/webroot/index.html index a0d31fc..110d3d9 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -47,7 +47,7 @@