Skip to content

Commit

Permalink
Show IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbrendel committed Oct 5, 2024
1 parent 42d2a2c commit b2acefa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions app/resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1659,6 +1659,10 @@ fieldset .field {
color: rgb(200, 200, 200);
}

.task-header-title span {
color: rgb(100, 100, 100);
}

.task-header-action {
position: relative;
display: inline-block;
Expand Down
2 changes: 1 addition & 1 deletion app/views/tasks.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<a name="task-anchor-{{ $task->get('id') }}"></a>
<div class="task-header">
<div class="task-header-title" id="task-item-title-{{ $task->get('id') }}">{{ $task->get('title') }}</div>
<div class="task-header-title" id="task-item-title-{{ $task->get('id') }}"><span>#{{ sprintf('%03d', $task->get('id')) }}</span> {{ $task->get('title') }}</div>
<div class="task-header-action">
<span><a href="javascript:void(0);" onclick="window.vue.editTask({{ $task->get('id') }});"><i class="fas fa-edit"></i></a></span>
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

0 comments on commit b2acefa

Please sign in to comment.