feat: rename lists to projects #2697

Closed
konrad wants to merge 53 commits from feature/rename-lists-to-projects into main
3 changed files with 6 additions and 6 deletions
Showing only changes of commit 170ac59395 - Show all commits

View File

@ -97,12 +97,12 @@ $filter-container-top-link-share-list: -47px;
margin-top: calc(#{$filter-container-top-link-share-gantt} - 5rem);
}
.link-share-container .project-view .filter-container {
.link-share-container .list-view .filter-container {
konrad marked this conversation as resolved Outdated

Should stay list-view

Should stay `list-view`

Done.

Done.
margin-top: $filter-container-top-link-share-list - 10px;
konrad marked this conversation as resolved Outdated

This is for the "list-view" so it should stay $filter-container-top-link-share-list

This is for the "list-view" so it should stay `$filter-container-top-link-share-list`

Done

Done
}
.link-share-container.project\.table-view,
.link-share-container.project\.project-view {
.link-share-container.project\.list-view {
konrad marked this conversation as resolved Outdated

Should stay .list-view.

Should stay `.list-view`.

Done.

Done.
.filter-container {
right: 9rem;
margin-top: $filter-container-top-default;

View File

@ -31,7 +31,7 @@
}
.link-share-container:not(.has-background) {
.project-view {
.list-view {
konrad marked this conversation as resolved Outdated

Should stay .list-view

Should stay `.list-view`
max-width: 100%;
}

View File

@ -50,12 +50,12 @@
<template #default>
<div
:class="{ 'is-loading': loading }"
class="loader-container is-max-width-desktop project-view"
class="loader-container is-max-width-desktop list-view"
konrad marked this conversation as resolved Outdated

This should stay list-view

This should stay `list-view`
>
<card :padding="false" :has-content="false" class="has-overflow">
<add-task
v-if="!project.isArchived && canWrite"
class="project-view__add-task"
class="list-view__add-task"
konrad marked this conversation as resolved Outdated

This should stay list-view__add-task

This should stay `list-view__add-task`
ref="addTaskRef"
:default-position="firstNewPosition"
@taskAdded="updateTaskProject"
@ -313,7 +313,7 @@ function prepareFiltersAndLoadTasks() {
}
}
.project-view__add-task {
.list-view__add-task {
konrad marked this conversation as resolved Outdated

This should stay list-view

This should stay `list-view`
padding: 1rem 1rem 0;
}