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..46580a72 100644 --- a/src/khoj/interface/web/chat.html +++ b/src/khoj/interface/web/chat.html @@ -1170,7 +1170,7 @@ To get started, just start typing below. You can also type / to see a list of co chat_log.message, chat_log.by, chat_log.context, - new Date(chat_log.created), + new Date(chat_log.created + "Z"), chat_log.onlineContext, chat_log.intent?.type, chat_log.intent?.["inferred-queries"]); @@ -1265,7 +1265,7 @@ To get started, just start typing below. You can also type / to see a list of co chat_log.message, chat_log.by, chat_log.context, - new Date(chat_log.created), + new Date(chat_log.created + "Z"), chat_log.onlineContext, chat_log.intent?.type, chat_log.intent?.["inferred-queries"] @@ -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 1b067996..ca0a4257 100644 --- a/src/khoj/interface/web/config_automation.html +++ b/src/khoj/interface/web/config_automation.html @@ -6,14 +6,13 @@ Automate Automate
- ⓘ Help + You can automate queries to run on a schedule using Khoj's automations. Results will be sent straight to your inbox.
-

Automations

@@ -28,12 +27,15 @@ width: 100%; height: 100%; grid-template-rows: none; + background-color: var(--frosted-background-color); + padding: 12px; } #create-automation-button { width: auto; } div#automations { margin-bottom: 12px; + grid-template-columns: 1fr; } button.negative-button { background-color: gainsboro; @@ -44,6 +46,34 @@ .positive-button:hover { background-color: var(--summer-sun); } + + div.automation-buttons { + display: grid; + grid-gap: 8px; + grid-template-columns: 1fr 3fr; + } + + button.save-automation-button { + background-color: var(--summer-sun); + } + + button.save-automation-button:hover { + background-color: var(--primary-hover); + } + + div.new-automation { + background-color: var(--frosted-background-color); + border-radius: 10px; + box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); + margin-bottom: 20px; + transition: box-shadow 0.3s ease, transform 0.3s ease; + } + + div.new-automation:hover { + box-shadow: 0 10px 15px 0 hsla(0, 0%, 0%, 0.1); + transform: translateY(-5px); + } +