From 66d3fae2623f5084f985275428e7a41c170ba4f7 Mon Sep 17 00:00:00 2001 From: shadowik Date: Sat, 20 May 2023 05:20:48 +0400 Subject: [PATCH] =?UTF-8?q?Tables=20(feat=20=D0=95=D0=B3=D0=BE=D1=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/Shared/_Layout.cshtml | 23 +++++++++++++------ .../wwwroot/css/site.css | 9 ++++++++ 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml b/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml index a7f1f6e..0d8b803 100644 --- a/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml +++ b/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml @@ -93,6 +93,15 @@ border-top-left-radius: 0; border-top-right-radius: 0; } + + table.table tbody tr td, + table.table thead tr th, + table.table thead { + border-left: solid; + border-right: solid; + border-width: 4px; + border-color: #FFFFFF; + } @@ -127,16 +136,16 @@ @{ if (APICashier.Cashier == null) { -
- Войти - Регистрация -
+
+ Войти + Регистрация +
} else { -
- @APICashier.Cashier.Surname @APICashier.Cashier.Name -
+
+ @APICashier.Cashier.Surname @APICashier.Cashier.Name +
} } diff --git a/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css b/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css index a22d929..2b6c780 100644 --- a/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css +++ b/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css @@ -86,4 +86,13 @@ body { margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0; +} + +table.table tbody tr td, +table.table thead tr th, +table.table thead { + border-left: solid; + border-right: solid; + border-width: 4px; + border-color: #ffc107 } \ No newline at end of file