1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Added audit log interface

- Displays the currently tracked activities in the system.

Related to #2173 and #1167
This commit is contained in:
Dan Brown
2020-09-19 12:06:45 +01:00
parent e5f0b4dd85
commit 78bf044a7a
13 changed files with 351 additions and 8 deletions

View File

@ -121,6 +121,11 @@ body.flexbox {
position: relative;
}
.flex-container-row {
display: flex;
flex-direction: row;
}
.flex-container-column {
display: flex;
flex-direction: column;

View File

@ -288,4 +288,15 @@ $btt-size: 40px;
transform: rotate(180deg);
}
}
}
table a.audit-log-user {
display: grid;
grid-template-columns: 42px 1fr;
align-items: center;
}
table a.icon-list-item {
display: grid;
grid-template-columns: 36px 1fr;
align-items: center;
}