56 lines
1.3 KiB
CSS
56 lines
1.3 KiB
CSS
/* modal-add-edit.component.css */
|
|
::ng-deep .modal-backdrop.show {
|
|
z-index: auto !important;
|
|
}
|
|
|
|
::ng-deep .input-group-append .btn {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-radius: 0;
|
|
border-left: 0;
|
|
flex-grow: 0;
|
|
border-left: 1px solid #ced4da;
|
|
padding: 0.375rem 0.75rem;
|
|
}
|
|
|
|
::ng-deep .input-group {
|
|
display: flex;
|
|
flex-wrap: nowrap; /* Prevents wrapping of the items */
|
|
align-items: center;
|
|
}
|
|
|
|
::ng-deep .form-control {
|
|
flex-grow: 1; /* Ensures select takes up available space */
|
|
padding-right: 0.5rem;
|
|
}
|
|
|
|
::ng-deep .input-group select,
|
|
::ng-deep .input-group .input-group-append .btn {
|
|
padding-right: 5px; /* Adjust padding if necessary */
|
|
}
|
|
|
|
::ng-deep .input-group .form-control {
|
|
margin-right: 2px; /* Adjust margin to make space */
|
|
}
|
|
|
|
|
|
.form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-control {
|
|
display: block;
|
|
width: 100%;
|
|
height: calc(1.5em + 0.75rem + 2px);
|
|
padding: 0.375rem 0.75rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #495057;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 1px solid #ced4da;
|
|
border-radius: 0.25rem;
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
}
|
|
|