Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion webapps/src/main/webapp/skin/css/tasks.less
Original file line number Diff line number Diff line change
Expand Up @@ -1665,7 +1665,7 @@

@media (max-width: 420px) {
.taskDrawer {
.text-header-title {
.text-title {
font-size: 16px !important;
}
.taskDrawer .drawerHeader .drawerTitle #taskActionMenu .uiThreeDotsIcon:before {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
<v-flex
class="mx-0 drawerHeader flex-grow-0 width-full">
<v-list-item class="px-0">
<v-list-item-content class="drawerTitle d-flex text-header-title text-truncate">
<span class="ps-2">{{ $t('label.comments') }}</span>
<v-list-item-content class="drawerTitle d-flex">
<span class="text-title">
<span class="ps-2 text-truncate">{{ $t('label.comments') }}</span>
</span>
</v-list-item-content>
<v-list-item-action class="drawerIcons align-end d-flex flex-row">
<v-btn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
v-if="showPlaceholder"
class="noTasksProject">
<v-icon size="60" class="primary--text mb-3">fas fa-tasks</v-icon>
<p class="text-header-title font-weight-regular mb-3">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter1') || $t('label.tasks.welcome') }}</p>
<p class="text-header-title font-weight-regular">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter2') || $t('label.noTask.today') }}</p>
<p class="text-title font-weight-regular mb-3">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter1') || $t('label.tasks.welcome') }}</p>
<p class="text-title font-weight-regular">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter2') || $t('label.noTask.today') }}</p>
<v-btn
class="btn btn-primary my-4"
v-on="{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<div v-if="hideGantt">
<div class="noTasksProject">
<v-icon size="60" class="primary--text mb-3">fas fa-tasks</v-icon>
<p class="text-header-title font-weight-regular mb-3">{{ $t('label.tasks.welcome') }}</p>
<div class="text-header-title font-weight-regular mb-3"><span>{{ $t('label.noTasks') }}</span></div>
<p class="text-title font-weight-regular mb-3">{{ $t('label.tasks.welcome') }}</p>
<div class="text-title font-weight-regular mb-3"><span>{{ $t('label.noTasks') }}</span></div>
<div class="addunscheduledTask">
<v-btn @click="$root.$emit('displayTasksUnscheduledDrawer', unscheduledTaskList)" depressed>
{{ $t('Unscheduled Tasks') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
v-if="showPlaceholder"
class="noTasksProject">
<v-icon size="60" class="primary--text mb-3">fas fa-tasks</v-icon>
<p class="text-header-title font-weight-regular mb-3">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter1') || $t('label.tasks.welcome') }}</p>
<p class="text-header-title font-weight-regular">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter2') || $t('label.noTask.today') }}</p>
<p class="text-title font-weight-regular mb-3">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter1') || $t('label.tasks.welcome') }}</p>
<p class="text-title font-weight-regular">{{ showPlaceholderResetSearch && $t('label.task.noResultWithFilter2') || $t('label.noTask.today') }}</p>
<v-btn
class="btn btn-primary my-4"
v-on="{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
:loading="loadingTasks"
extra-class="application-body">
<template #title>
<span class="widget-text-header text-truncate"> {{ $t('label.tasks.header') }} </span>
<span class="text-header">
<span class="text-truncate">{{ $t('label.tasks.header') }}</span>
</span>
</template>
<template #action>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
:right="!$vuetify.rtl"
@closed="reset">
<template #title>
<div class="text-truncate text-header-title font-weight-bold text-color">
{{ $t('tasks.settings.edit.drawer.title') }}
<div class="text-title font-weight-bold text-color">
<span class="text-truncate">{{ $t('tasks.settings.edit.drawer.title') }}</span>
</div>
</template>
<template #content>
Expand Down
Loading