Created Suppliers

This commit is contained in:
Deon George
2021-12-20 14:25:43 +11:00
parent 0aa7ff3b2c
commit bdcfe07fb0
12 changed files with 504 additions and 33 deletions

17
public/css/fixes.css vendored
View File

@@ -82,7 +82,6 @@ table.dataTable thead .sorting {
/* Fix selected item is positioned correctly */
span.select2-selection.select2-selection--single > span.select2-selection__rendered {
margin-top: -9px;
margin-left: -9px;
}
@@ -90,3 +89,19 @@ span.select2-selection.select2-selection--single > span.select2-selection__rende
.select2-selection.select2-selection--single {
height: calc(2.25rem + 2px) !important;
}
/* Fix dark background nav pills */
.card-header.bg-dark .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
background-color: #ffffff;
color: #343a40;
}
.card-header.bg-dark .nav-pills .nav-link:hover {
background-color: #6c757d;
color: #ffffff;
}
.card-header.bg-dark .nav-pills .nav-link:not(.active):hover {
background-color: #6c757d;
color: #ffffff;
}