133 lines
1.8 KiB
CSS
133 lines
1.8 KiB
CSS
.modal-content {
|
|
max-height: 80vh;
|
|
overflow-y: auto;
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1em 4em 2em 4em;
|
|
}
|
|
|
|
.title {
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
.client-info-card {
|
|
background-color: #f1f1f1;
|
|
padding: 24px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.info-columns {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 24px;
|
|
}
|
|
|
|
.info-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.info-pair {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.label {
|
|
font-size: 0.9rem;
|
|
font-weight: 550;
|
|
color: #3f51b5;
|
|
}
|
|
|
|
.value {
|
|
font-size: 1rem;
|
|
color: #222;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.disk-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
}
|
|
|
|
.disk-layout {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.table-container {
|
|
flex: 5;
|
|
display: flex;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.charts-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 24px;
|
|
flex: 2;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.mat-elevation-z8 {
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
table {
|
|
border: 2px solid #f3f3f3;
|
|
border-radius: 0px !important;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.table-header-container {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10px;
|
|
gap: 20px;
|
|
}
|
|
|
|
.charts-container.single-disk {
|
|
justify-content: center;
|
|
}
|
|
|
|
.charts-container.single-disk .disk-usage {
|
|
max-width: 400px;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.disk-usage {
|
|
flex: 1 1 260px;
|
|
min-width: 240px;
|
|
padding: 16px;
|
|
background: #f9f9f9;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.chart {
|
|
width: 100%;
|
|
height: 160px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
padding: 1.5em;
|
|
}
|
|
|
|
.client-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
margin-bottom: 40px;
|
|
}
|