web-base/react/shared/elements/data-table.css

59 lines
868 B
CSS
Raw Normal View History

.data-table {
padding: 0;
}
.data-table td, .data-table th {
2023-01-16 21:47:23 +01:00
padding: 5px;
vertical-align: middle;
}
.data-table th {
background-color: #bbb;
2023-01-25 14:15:34 +01:00
white-space: nowrap;
}
2023-01-16 21:47:23 +01:00
.data-table th > svg {
vertical-align: middle;
width: 18px;
height: 18px;
margin-right: 5px;
}
.center {
text-align: center;
2023-01-16 21:47:23 +01:00
}
2023-03-05 15:30:06 +01:00
.font-monospace {
font-family: monospace;
}
2023-01-16 21:47:23 +01:00
.data-table-clickable {
cursor: pointer;
}
.pagination-controls {
margin-top: 12px;
2024-05-02 16:40:06 +02:00
display: grid;
grid-template-columns: 75px auto;
align-items: center;
}
2024-05-02 16:40:06 +02:00
.pagination-controls select {
padding-top: 5px;
padding-bottom: 5px;
2023-01-25 14:15:34 +01:00
}
.data-table-buttons {
white-space: nowrap;
}
.data-table-buttons > svg {
margin-left: 4px;
margin-right: 4px;
cursor: pointer;
2024-04-05 17:14:36 +02:00
}
.data-table-button-bar button {
margin-right: 8px;
margin-top: 8px;
}