From 6fe14b125ef2e81bd9ffc89b258abdc8f90b3d26 Mon Sep 17 00:00:00 2001 From: rohan-equinix Date: Mon, 18 Sep 2023 20:13:32 +0530 Subject: [PATCH] implemented invoice search box in latest invoice section. --- app/assets/stylesheets/kaui/invoice.scss | 15 ++++++++++++ app/views/kaui/invoices/index.html.erb | 30 +++++++++++++++++++++--- 2 files changed, 42 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/kaui/invoice.scss b/app/assets/stylesheets/kaui/invoice.scss index eb3b0ffa..fd7bcb0a 100644 --- a/app/assets/stylesheets/kaui/invoice.scss +++ b/app/assets/stylesheets/kaui/invoice.scss @@ -56,3 +56,18 @@ table.invoice-totals { font-size: 12px; padding: 5px 30px; } + +.invoice-bar{ + display: flex; + justify-content: space-between; + margin-bottom: 10px; +} + +.search-icon{ + margin-left: -25px; + opacity: 0.5; +} + +#search-invoice-btn{ + margin-left: 10px; +} \ No newline at end of file diff --git a/app/views/kaui/invoices/index.html.erb b/app/views/kaui/invoices/index.html.erb index 7958ef6c..24f27f45 100644 --- a/app/views/kaui/invoices/index.html.erb +++ b/app/views/kaui/invoices/index.html.erb @@ -1,9 +1,15 @@