From 7fd57d737e82c9d166e69593cc62febd3cf4d1a9 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Wed, 1 May 2024 14:19:47 +0530 Subject: [PATCH] Adjustments to improve overall styling of config page, email template --- src/interface/desktop/chat.html | 2 +- src/khoj/interface/email/task.html | 10 ++++------ src/khoj/interface/web/chat.html | 2 +- src/khoj/interface/web/config_automation.html | 13 +++++++------ 4 files changed, 13 insertions(+), 14 deletions(-) diff --git a/src/interface/desktop/chat.html b/src/interface/desktop/chat.html index c26fe4b5..73e88159 100644 --- a/src/interface/desktop/chat.html +++ b/src/interface/desktop/chat.html @@ -1509,7 +1509,7 @@ #chat-input { font-family: var(--font-family); font-size: small; - height: 36px; + height: 48px; border-radius: 16px; resize: none; overflow-y: hidden; diff --git a/src/khoj/interface/email/task.html b/src/khoj/interface/email/task.html index 1e78ce34..92f0785a 100644 --- a/src/khoj/interface/email/task.html +++ b/src/khoj/interface/email/task.html @@ -11,20 +11,18 @@
-

Your Open, Personal AI

-

Hey {{name}}!

-

I've shared your automation results below:

+

Your Automation, From Your Personal AI

- +

{{subject}}

{{result}}

-

The automation query I ran on your behalf: {{query}}

-

You can view, delete your automations via the settings page

+

The automation I ran on your behalf: {{query}}

+

You can manage your automations via the settings page.

- Khoj

diff --git a/src/khoj/interface/web/chat.html b/src/khoj/interface/web/chat.html index cb18ba0a..86cfdf71 100644 --- a/src/khoj/interface/web/chat.html +++ b/src/khoj/interface/web/chat.html @@ -2164,7 +2164,7 @@ To get started, just start typing below. You can also type / to see a list of co #chat-input { font-family: var(--font-family); font-size: medium; - height: 36px; + height: 48px; border-radius: 16px; resize: none; overflow-y: hidden; diff --git a/src/khoj/interface/web/config_automation.html b/src/khoj/interface/web/config_automation.html index 902e7949..ca0a4257 100644 --- a/src/khoj/interface/web/config_automation.html +++ b/src/khoj/interface/web/config_automation.html @@ -5,14 +5,14 @@

Automate Automate - +
+ You can automate queries to run on a schedule using Khoj's automations. Results will be sent straight to your inbox. +

@@ -27,6 +27,8 @@ width: 100%; height: 100%; grid-template-rows: none; + background-color: var(--frosted-background-color); + padding: 12px; } #create-automation-button { width: auto; @@ -60,10 +62,9 @@ } div.new-automation { - background-color: #f9f9f9; + background-color: var(--frosted-background-color); border-radius: 10px; box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); - padding: 20px; margin-bottom: 20px; transition: box-shadow 0.3s ease, transform 0.3s ease; }