Skip to content

Commit 35f0fb0

Browse files
committed
An improvement has been added to prevent flickering.
1 parent 4da50ca commit 35f0fb0

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

resources/views/auth/newLogin.blade.php

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
<meta name="settings-translations-enabled" content="{{ config('translations.enabled') ? 'true' : 'false' }}">
1111
<title>{{ __('Login') }} - {{ __('ProcessMaker') }}</title>
1212
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
13+
<style>
14+
html,
15+
body {
16+
background-color: #002D59;
17+
}
18+
19+
.login-container .btn-primary.button-login {
20+
background-color: #2563EB;
21+
border-color: #2563EB;
22+
}
23+
</style>
1324
<link rel="icon" type="image/png" sizes="16x16" href="{{ \ProcessMaker\Models\Setting::getFavicon() }}">
1425
@if (hasPackage('package-accessibility'))
1526
@include('package-accessibility::userway')
@@ -192,7 +203,6 @@ function updateCapsLockWarning(event) {
192203
<script src="{{ mix('js/translations/index.js') }}"></script>
193204
<style>
194205
body {
195-
background: transparent;
196206
height: unset;
197207
font-family: 'Open Sans', sans-serif;
198208
}
@@ -573,7 +583,6 @@ function updateCapsLockWarning(event) {
573583
@media (max-width: 767px) {
574584
.small-screen {
575585
border: 0;
576-
background: transparent;
577586
}
578587
579588
.login-container {

0 commit comments

Comments
 (0)