+ client: add response information to the filtered query log items

This commit is contained in:
Ildar Kamalov
2019-08-30 16:03:36 +03:00
parent 3b98461a2a
commit 428706399a
5 changed files with 315 additions and 249 deletions

View File

@@ -9,13 +9,12 @@
justify-content: center;
}
.logs__row--overflow {
overflow: hidden;
.logs__row--column {
align-items: flex-start;
flex-direction: column;
}
.logs__row--column {
flex-direction: column;
align-items: flex-start;
.logs__row--overflow {
overflow: hidden;
}
@@ -103,3 +102,20 @@
border-color: #1991eb;
box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.25);
}
.logs__text-wrap {
display: flex;
align-items: center;
max-width: 100%;
}
.logs__list-wrap {
display: flex;
max-width: 100%;
}
.logs__list-item {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}