94 lines
1.3 KiB
CSS
94 lines
1.3 KiB
CSS
.header-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 10px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.header-container-title {
|
|
flex-grow: 1;
|
|
text-align: left;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.calendar-button-row {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.lists-container {
|
|
padding: 16px;
|
|
}
|
|
|
|
.imagesLists-container {
|
|
flex: 1;
|
|
}
|
|
|
|
.card.unidad-card {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 1.5rem 0rem 1.5rem 0rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.search-string {
|
|
flex: 1;
|
|
padding: 5px;
|
|
}
|
|
|
|
.search-boolean {
|
|
flex: 1;
|
|
padding: 5px;
|
|
}
|
|
|
|
.search-select {
|
|
flex: 2;
|
|
padding: 5px;
|
|
}
|
|
|
|
.mat-elevation-z8 {
|
|
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.progress-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.paginator-container {
|
|
display: flex;
|
|
justify-content: end;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.chip-failed {
|
|
background-color: #e87979 !important;
|
|
color: white;
|
|
}
|
|
|
|
.chip-success {
|
|
background-color: #46c446 !important;
|
|
color: white;
|
|
}
|
|
|
|
.chip-pending {
|
|
background-color: #bebdbd !important;
|
|
color: black;
|
|
}
|
|
|
|
.chip-in-progress {
|
|
background-color: #f5a623 !important;
|
|
color: white;
|
|
} |