Compare commits
No commits in common. "c1d3345a013981868788587ac395e4ef787a9252" and "645d8af22d5c144be6b3d4183b3da3648009715d" have entirely different histories.
c1d3345a01
...
645d8af22d
3 changed files with 1 additions and 20 deletions
|
|
@ -141,10 +141,6 @@ a {
|
||||||
box-shadow: 0 16px 40px rgba(23, 32, 51, 0.06);
|
box-shadow: 0 16px 40px rgba(23, 32, 51, 0.06);
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-card {
|
|
||||||
padding: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-table {
|
.admin-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ final class GitSynchronizer
|
||||||
$this->runGit(['git', '-C', $repositoryDir, 'remote', 'set-url', 'origin', $mapping->getRepositoryUrl()], null, $env);
|
$this->runGit(['git', '-C', $repositoryDir, 'remote', 'set-url', 'origin', $mapping->getRepositoryUrl()], null, $env);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->runGit(['git', '-C', $repositoryDir, 'fetch', '--prune', '--tags', '--force', 'origin', $mapping->getGitRef()], null, $env);
|
$this->runGit(['git', '-C', $repositoryDir, 'fetch', '--prune', '--tags', 'origin', $mapping->getGitRef()], null, $env);
|
||||||
$this->runGit(['git', '-C', $repositoryDir, 'checkout', '--force', 'FETCH_HEAD'], null, $env);
|
$this->runGit(['git', '-C', $repositoryDir, 'checkout', '--force', 'FETCH_HEAD'], null, $env);
|
||||||
|
|
||||||
return $repositoryDir;
|
return $repositoryDir;
|
||||||
|
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Tests;
|
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
|
|
||||||
final class AdminCssTest extends TestCase
|
|
||||||
{
|
|
||||||
public function testAdminCardDefinesInnerPadding(): void
|
|
||||||
{
|
|
||||||
$css = (string) file_get_contents(dirname(__DIR__).'/public/admin.css');
|
|
||||||
|
|
||||||
self::assertMatchesRegularExpression('/\.admin-card\s*\{[^}]*\bpadding:\s*24px;/s', $css);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in a new issue