From 8e481325614c9e94133c6587f028a6c504acf3f5 Mon Sep 17 00:00:00 2001 From: "Edward Tirado Jr." Date: Thu, 16 Apr 2026 17:58:28 -0500 Subject: [PATCH] updated list settings to use button action components --- app/assets/css/variables.css | 6 ++++-- app/components/common/button-action.vue | 13 ++++++++++--- app/components/common/input-action.vue | 2 +- app/components/list-settings.vue | 22 ++++++++++++++++++++-- app/components/movie-list.vue | 9 ++++++++- app/components/panels/movie-details.vue | 7 ++++++- 6 files changed, 49 insertions(+), 10 deletions(-) diff --git a/app/assets/css/variables.css b/app/assets/css/variables.css index 8232166..e3b3fc5 100644 --- a/app/assets/css/variables.css +++ b/app/assets/css/variables.css @@ -5,7 +5,9 @@ --result-background: #c4c1d2; --panel-background: #f5f5f5; --card-background: #c4c1d2; - --color-action-button: #4caf50; + --color-button-primary: #4caf50; + --color-button-warning: #f59e0b; + --color-button-danger: #fb3b3b; --color-action-button-text: #fff; - --color-error-text: red; + --color-error-text: #fb3b3b; } \ No newline at end of file diff --git a/app/components/common/button-action.vue b/app/components/common/button-action.vue index 980109b..0a663f2 100644 --- a/app/components/common/button-action.vue +++ b/app/components/common/button-action.vue @@ -1,20 +1,27 @@