diff --git a/src/style.css b/src/style.css index cf74341..82e7eff 100644 --- a/src/style.css +++ b/src/style.css @@ -8,3 +8,7 @@ .chat_image_button { padding: 0; } +.editing_message_textview { + border-radius: 5px; + padding: 5px; +} diff --git a/src/window.py b/src/window.py index bed80a0..86764ae 100644 --- a/src/window.py +++ b/src/window.py @@ -505,7 +505,7 @@ class AlpacaWindow(Adw.ApplicationWindow): text_buffer.delete(start_iter, end_iter) text_view.set_editable(True) - text_view.set_css_classes(["view"]) + text_view.set_css_classes(["view", "editing_message_textview"]) self.editing_message = {"text_view": text_view, "id": id, "button_container": button_container, "footer": footer}