mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
70 lines
975 B
CSS
70 lines
975 B
CSS
.table {
|
|
font-size: var(--font-size-sm);
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: var(--font-size-md);
|
|
line-height: 40px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
height: 50px;
|
|
border-bottom: 1px solid var(--base300);
|
|
}
|
|
|
|
.body {
|
|
overflow: auto;
|
|
height: 100%;
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.time {
|
|
min-width: 60px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.website {
|
|
text-align: right;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.detail {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
gap: 10px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.detail > span {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.row .link {
|
|
color: var(--base900);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.row .link:hover {
|
|
color: var(--primary400);
|
|
}
|