Fix error message for required file

This commit is contained in:
Jeremy Thomas
2018-10-07 12:44:42 +02:00
parent 0d319def10
commit 4b37bae271
2 changed files with 7 additions and 2 deletions

View File

@@ -3854,12 +3854,12 @@ a.box:active {
}
.file-input {
height: 0.01em;
height: 100%;
left: 0;
outline: none;
position: absolute;
top: 0;
width: 0.01em;
width: 100%;
}
.file-cta,
@@ -4826,6 +4826,10 @@ a.box:active {
}
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
background-color: #fafafa;
}
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
background-color: whitesmoke;
}