umami/components/metrics/RealtimeLog.module.css

60 lines
831 B
CSS
Raw Normal View History

2020-10-09 11:56:15 +02:00
.table {
2020-10-10 02:58:27 +02:00
font-size: var(--font-size-xsmall);
2020-10-10 10:28:26 +02:00
overflow: hidden;
height: 100%;
display: grid;
grid-template-rows: fit-content(100%) fit-content(100%) auto;
2020-10-09 11:56:15 +02:00
}
2020-10-10 05:37:24 +02:00
.header {
display: flex;
align-items: center;
justify-content: space-between;
2020-10-10 10:16:28 +02:00
font-size: 16px;
2020-10-10 05:37:24 +02:00
line-height: 40px;
font-weight: 600;
}
2020-10-09 11:56:15 +02:00
.row {
display: flex;
2020-10-10 10:16:28 +02:00
align-items: center;
height: 40px;
2020-10-09 11:56:15 +02:00
border-bottom: 1px solid var(--gray300);
}
2020-10-09 13:21:59 +02:00
.body {
overflow: auto;
height: 100%;
2020-10-09 13:21:59 +02:00
}
.icon {
2020-10-10 10:16:28 +02:00
margin-right: 10px;
}
.time {
min-width: 60px;
overflow: hidden;
2020-10-09 13:21:59 +02:00
}
2020-10-10 02:58:27 +02:00
.website {
2020-10-10 10:28:26 +02:00
text-align: right;
2020-10-11 07:36:55 +02:00
padding: 0 20px;
2020-10-10 02:58:27 +02:00
}
.detail {
2020-10-10 10:16:28 +02:00
display: flex;
2020-10-10 02:58:27 +02:00
flex: 1;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
2020-11-03 04:37:13 +01:00
.row .link {
color: var(--gray900);
text-decoration: none;
}
.row .link:hover {
color: var(--primary400);
}