From 75c9806b7948572f91146dcad4f648710165ccc8 Mon Sep 17 00:00:00 2001 From: SpookyDervish <78246495+SpookyDervish@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:09:17 +1100 Subject: [PATCH] fix --- style.tcss => assets/style.tcss | 148 +++++++++--------- theme_mappings.py => assets/theme_mappings.py | 30 ++-- 2 files changed, 89 insertions(+), 89 deletions(-) rename style.tcss => assets/style.tcss (92%) rename theme_mappings.py => assets/theme_mappings.py (94%) diff --git a/style.tcss b/assets/style.tcss similarity index 92% rename from style.tcss rename to assets/style.tcss index 2a830e5..ad0d123 100644 --- a/style.tcss +++ b/assets/style.tcss @@ -1,75 +1,75 @@ -#sidebar { - background: $boost-darken-1; - width: 15%; - min-width: 20; - dock: left; - margin-top: 1; -} - -#sidebar-buttons { - padding: 1; - padding-bottom: 0; - background: $boost-darken-1; - border-bottom: tall $surface; - - Button { - max-width: 5; - margin-right: 1; - } -} - -ContentSwitcher Vertical { - padding: 1; - Static { - margin-bottom: 1; - text-style: dim; - } -} - -#files { - #directory { - background: transparent; - } -} - -#editor { - margin-top: 1; - - #code-editor { - min-height: 3; - } -} - -#console-container { - padding-top: 1; - margin: 1; - border-top: tall $boost; - height: 35%; - min-height: 12; - - #console { - border: tall $boost; - margin-bottom: 1; - } -} - -#find-window { - width: 45; - height: 11; - - Input { - width: 20; - margin-bottom: 1; - } - - #num-matches { - width: 10; - margin-left: 1; - height: 3; - content-align: left middle; - } - - Button { - max-width: 5; - } +#sidebar { + background: $boost-darken-1; + width: 15%; + min-width: 20; + dock: left; + margin-top: 1; +} + +#sidebar-buttons { + padding: 1; + padding-bottom: 0; + background: $boost-darken-1; + border-bottom: tall $surface; + + Button { + max-width: 5; + margin-right: 1; + } +} + +ContentSwitcher Vertical { + padding: 1; + Static { + margin-bottom: 1; + text-style: dim; + } +} + +#files { + #directory { + background: transparent; + } +} + +#editor { + margin-top: 1; + + #code-editor { + min-height: 3; + } +} + +#console-container { + padding-top: 1; + margin: 1; + border-top: tall $boost; + height: 35%; + min-height: 12; + + #console { + border: tall $boost; + margin-bottom: 1; + } +} + +#find-window { + width: 45; + height: 11; + + Input { + width: 20; + margin-bottom: 1; + } + + #num-matches { + width: 10; + margin-left: 1; + height: 3; + content-align: left middle; + } + + Button { + max-width: 5; + } } \ No newline at end of file diff --git a/theme_mappings.py b/assets/theme_mappings.py similarity index 94% rename from theme_mappings.py rename to assets/theme_mappings.py index ab244d6..5b46920 100644 --- a/theme_mappings.py +++ b/assets/theme_mappings.py @@ -1,16 +1,16 @@ -theme_mappings = { - "py": "python", - "json": "json", - "tcss": "css", - "css": "css", - "html": "html", - "htm": "html", - "rs": "rust", - "js": "javascript", - "xml": "xml", - "toml": "toml", - "go": "go", - "sh": "bash", - "yaml": "yaml", - "md": "markdown" +theme_mappings = { + "py": "python", + "json": "json", + "tcss": "css", + "css": "css", + "html": "html", + "htm": "html", + "rs": "rust", + "js": "javascript", + "xml": "xml", + "toml": "toml", + "go": "go", + "sh": "bash", + "yaml": "yaml", + "md": "markdown" } \ No newline at end of file