Skip to content

Commit

Permalink
Improve colors contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
bedo2991 committed Aug 9, 2023
1 parent 391fce6 commit 55cacf3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resources/views/clubevent/createClubEventView.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ class="{{ $labelClass }}">{{ __('mainLang.passwordRepeat') }}:</label>

<div class="col-md-5 p-0-xs">
<div class="card col-12 border-warning mb-3">
<div class="card-header bg-warning">
<div class="card-header text-bg-warning">
<h4 class="card-title">{{ __('mainLang.moreInfos') }}:</h4>({{ __('mainLang.public') }})
</div>
<div class="card-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/month/day.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if ($weekDay->format('Y-m-d') === date('Y-m-d'))
{{-- The actual date of today marked in dark gray--}}
<div class="bg-primary-subtle scroll-marker custom-md-85">
<div class="text-bg-secondary scroll-marker custom-md-85">
@elseif ($weekDay->format('W/o') === date('W/o'))
{{-- Other day in this week --}}
<div class="bg-dark-subtle custom-md-85">
Expand Down
6 changes: 3 additions & 3 deletions resources/views/surveyView.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
@if($userId == $survey->creator_id || $userCanEditDueToRole)
<a href="{{$survey->id}}/edit"
style="float: right"
class="btn btn-secondary btn-sm"
class="btn btn-primary btn-sm"
data-bs-placement="bottom">
<i class="fa-solid fa-pen-square" style="color: black"></i>
<i class="fa-solid fa-pen-square"></i>
</a>
@endif
</h4>
Expand All @@ -113,7 +113,7 @@ class="btn btn-secondary btn-sm"
{!! Form::open(['method'=>'POST', 'action' => ['SurveyAnswerController@store', $survey->id], 'class' => 'store', 'name' => 'store']) !!}

@if( $survey->password != '')
<div class="card bg-warning">
<div class="card text-bg-warning">

<div class="hidden-print card-header">
{!! Form::password('password', ['class'=>'col-md-4 col-12',
Expand Down

0 comments on commit 55cacf3

Please sign in to comment.