From: Brendan Hansen Date: Mon, 20 Feb 2023 02:52:11 +0000 (-0600) Subject: changed look a little bit X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=2a7cb515221d8a0dd37efe20d32f6b5d807913c9;p=onyx-live.git changed look a little bit --- diff --git a/config/default.py b/config/default.py index 48ef9ba..2561dcb 100644 --- a/config/default.py +++ b/config/default.py @@ -1 +1,5 @@ -ENDPOINT="/onyx" +DOMAIN_NAME="http://localhost:5000" + +ENDPOINT="/../" + +ONYX_SOURCE_FOLDER="/home/brendan/dev/onyx" diff --git a/serve.py b/serve.py index 50ef5e8..6081d11 100644 --- a/serve.py +++ b/serve.py @@ -144,4 +144,4 @@ def get_core_libraries(): output = build_dir("./core_libraries") response = flask.Response(json.dumps(output), mimetype="application/json") - return response \ No newline at end of file + return response diff --git a/static/css/index.css b/static/css/index.css index 7c3f582..f664511 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -60,7 +60,7 @@ select { color: var(--foreground-color); background: var(--light-background-color); - border-radius: 6px; + /* border-radius: 6px; */ transition: all 0.5s; } @@ -271,8 +271,14 @@ select:hover { background: #a04444; } +.modal { + border-radius: 0 !important; + -webkit-border-radius: 0 !important; +} + .ace_editor { - font-family: "mononoki Nerd Font Mono", "mononoki NF", Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace !important; + /* font-family: "mononoki Nerd Font Mono", "mononoki NF", Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace !important; */ + font-family: monospace !important; } .tab-line { @@ -280,15 +286,16 @@ select:hover { border-bottom: 2px solid var(--dark-background-color); cursor: default; user-select: none; + line-height: calc(var(--tab-line-height) + 2px); } .tab-line span { background: var(--active-color); - border-radius: 8px 8px 0 0; - margin-left: 8px; - padding: 2px 6px; + /* border-radius: 8px 8px 0 0; */ + /* margin-left: 8px; */ + padding: 4px 6px; height: 100%; - line-height: var(--tab-line-height); + /* line-height: var(--tab-line-height); */ } ::-webkit-scrollbar { @@ -352,4 +359,4 @@ select:hover { .hidden { display: none !important; -} \ No newline at end of file +}