From 30e5a315915eb4675b629ac2d984a42891735b67 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Thu, 5 Oct 2023 23:40:48 +0900 Subject: [PATCH] Position, Depth, Order Inputs to WI Entry header --- public/css/st-tailwind.css | 16 +++++++++++- public/css/world-info.css | 10 ++++---- public/index.html | 39 +++++++++++++++++++++++------ public/scripts/world-info.js | 48 +++++++++++++++++++++++++++--------- 4 files changed, 87 insertions(+), 26 deletions(-) diff --git a/public/css/st-tailwind.css b/public/css/st-tailwind.css index 172b7a5de..f5ab0d9f2 100644 --- a/public/css/st-tailwind.css +++ b/public/css/st-tailwind.css @@ -124,6 +124,10 @@ max-width: 100px; } +.width100px { + width: 100px; +} + .widthUnset { width: unset; } @@ -374,6 +378,11 @@ cursor: pointer; } +input:disabled, +textarea:disabled { + cursor: not-allowed; +} + .debug-red { border: 1px solid red !important; } @@ -402,6 +411,11 @@ font-size: calc(var(--mainFontSize) * 0.6) !important; } +.paddingBottom5px { + padding: unset; + padding-bottom: 5px; +} + .paddingTopBot5 { padding: 5px 0; } @@ -429,4 +443,4 @@ .opacity1 { opacity: 1 !important; -} +} \ No newline at end of file diff --git a/public/css/world-info.css b/public/css/world-info.css index 67ea3edec..aceeb58b5 100644 --- a/public/css/world-info.css +++ b/public/css/world-info.css @@ -101,7 +101,7 @@ height: auto; margin-top: 0; margin-bottom: 0; - min-height: 32px; + min-height: var(--mainFontSize); } .delete_entry_button { @@ -162,11 +162,11 @@ } .wi-card-entry { - border: 1px groove; + border: 1px solid; border-color: var(--SmartThemeBorderColor); - border-radius: 8px; - padding: 5px; - margin-bottom: 3px; + border-radius: 10px; + padding: 0 5px; + margin-bottom: 1px; } .world_entry { diff --git a/public/index.html b/public/index.html index cc43d33f1..39ea0e768 100644 --- a/public/index.html +++ b/public/index.html @@ -2726,6 +2726,7 @@ +