mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-11 22:07:29 -08:00
Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
be6f367565
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue