Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2023-01-24 19:12:50 -08:00
commit be6f367565
2 changed files with 8 additions and 6 deletions

View file

@ -149,7 +149,7 @@ class RestoreFromBackup extends Command
$boring_files[] = $raw_path;
continue;
}
if (@pathinfo($raw_path)['extension'] == 'sql') {
if (@pathinfo($raw_path, PATHINFO_EXTENSION) == 'sql') {
\Log::debug("Found a sql file!");
$sqlfiles[] = $raw_path;
$sqlfile_indices[] = $i;

View file

@ -84,7 +84,13 @@
color: #fff;
}
}
a.btn.btn-link.text-left{
color:@navy;
border: 1px solid #000;
}
a.btn.btn-link.text-left:hover{
color:@navy;
}
a {
color: @navy;
@ -102,10 +108,6 @@ a.btn {
&:hover {
color: #fff;
text-decoration: underline;
}
&:visited {
color: #fff;
}
}