#16009 Added btn-float-group style class and added to form templates for floating button groups

This commit is contained in:
atownson
2024-09-17 13:36:05 -05:00
parent 7167f20ca5
commit 8715f6fe87
6 changed files with 14 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@@ -33,3 +33,11 @@ span.color-label {
.netbox-edition {
letter-spacing: .15rem;
}
// A floating div for form buttons
.btn-float-group {
position: sticky;
bottom: 0px;
z-index: 1;
padding: 2px 0px 10px 0px;
}

View File

@@ -52,7 +52,7 @@ pre {
}
// Altering background colors
.page, .page-tabs .nav-tabs .nav-link.active {
.page, .page-tabs .nav-tabs .nav-link.active, .btn-float-group {
background-color: var(--#{$prefix}bg-surface-tertiary) !important;
}
.page-body .card .card-header {
@@ -105,7 +105,7 @@ body[data-bs-theme=dark] {
.navbar, .page-header {
background-color: $rich-black;
}
.page, .page-tabs .nav-tabs .nav-link.active {
.page, .page-tabs .nav-tabs .nav-link.active, .btn-float-group {
background-color: $rich-black-light !important;
}