Skip to content

Commit 88aea82

Browse files
committed
overrides: add table and grid log values
* closes inveniosoftware/invenio-jobs#67
1 parent c325177 commit 88aea82

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

invenio_theme/assets/semantic-ui/less/invenio_theme/theme/collections/grid.overrides

+5
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,8 @@
124124
}
125125
}
126126
}
127+
128+
.log-table {
129+
max-height: calc(100vh - 300px);
130+
overflow-Y: auto;
131+
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
/***********************************************
22
Invenio Theme Table Overrides
33
***********************************************/
4+
5+
@keyframes fadeIn {
6+
from {
7+
opacity: 0;
8+
}
9+
to {
10+
opacity: 1;
11+
}
12+
}
13+
14+
.log-line {
15+
animation: fadeIn 0.3s ease-in;
16+
}

0 commit comments

Comments
 (0)