Skip to content

Commit

Permalink
Merge pull request #2842 from Leantime/project-checklist-ui-fix-2171
Browse files Browse the repository at this point in the history
Project checklist fix
  • Loading branch information
marcelfolaron authored Dec 16, 2024
2 parents d493cdb + 8c2988c commit 1e8bd35
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 5 additions & 4 deletions app/Domain/Dashboard/Templates/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<div class="maincontent">
<div class="row">
<div class="col-md-8">
<x-global::content.card variation="content">
<x-global::content.card variation="widget">
<x-slot:card-context-buttons>
<x-global::forms.button shape="circle" content-role="tertiary"
data-tippy-content="{{ __('label.favorite_tooltip') }}"
Expand Down Expand Up @@ -86,7 +86,7 @@ class="delete">
</article>
</x-global::content.card>

<x-global::content.card variation="content">
<x-global::content.card variation="widget">
<x-slot:card-title>{{ __('headlines.latest_todos') }}</x-slot:card-title>

@if (count($tickets) == 0)
Expand All @@ -99,7 +99,7 @@ class="delete">

</x-global::content.card>

<x-global::content.card variation="content">
<x-global::content.card variation="widget">
<x-slot:card-title>{{ __('tabs.team') }}</x-slot:card-title>
@dispatchEvent('teamBoxBeginning', ['project' => $project])

Expand Down Expand Up @@ -143,7 +143,8 @@ class="delete">
<div class="col-md-4">
<x-dashboard::project-updates :id="$project['id']" />

<x-global::content.card variation="content">
<x-global::content.card variation="widget">

<x-slot:card-title>
{{ __('subtitles.project_progress') }}
</x-slot:card-title>
Expand Down
4 changes: 3 additions & 1 deletion app/Domain/Projects/Templates/delProject.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

@displayNotification()

<h4 class="widget widgettitle">{{ __("subtitles.delete") }}</h4>
<h4 class="widget widgettitle">{!! __("subtitles.delete") !!}</h4>
<div class="widgetcontent">

<form method="post">
Expand All @@ -40,3 +40,5 @@

</div>
</div>

@endsection
2 changes: 1 addition & 1 deletion public/assets/css/components/progressbars.css
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
}

.progressWrapper .step .dropdown-menu li input {
float:left;
float: none;
margin-right:5px;
}

Expand Down

0 comments on commit 1e8bd35

Please sign in to comment.