This commit is contained in:
2026-04-02 12:00:38 +02:00
parent 46dae22a71
commit e743245cee
21 changed files with 2105 additions and 196 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1750,7 +1750,7 @@ $sidebar-hover-bg: rgba(255, 255, 255, 0.08);
.finance-manager {
display: grid;
gap: 10px;
grid-template-columns: 200px 1fr 500px;
grid-template-columns: 250px 1fr 500px;
padding-top: 25px;
.manage-menu {
@@ -1999,36 +1999,248 @@ $sidebar-hover-bg: rgba(255, 255, 255, 0.08);
.tasks_main_view {
display: flex;
gap: 20px;
align-items: flex-start;
._left_column {
padding: 25px;
background: #fcfcfc;
border-right: 1px solid #e8e8e8;
width: 350px;
width: fit-content;
min-width: 350px;
max-width: 520px;
padding: 0;
background: transparent;
border-right: 0;
label {
font-weight: 400;
font-size: 14px;
.filters_panel {
background: linear-gradient(180deg, #fdfefe 0%, #f4f7fb 100%);
border: 1px solid #dbe2ea;
border-radius: 12px;
padding: 16px;
box-shadow: none;
}
.filters_panel_header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 14px;
}
.filters_panel_title {
display: flex;
align-items: center;
gap: 8px;
i {
color: #1f3d72;
}
h3 {
margin: 0;
font-size: 16px;
font-weight: 700;
color: #1f3d72;
}
}
.active_filters_badge {
display: inline-flex;
align-items: center;
padding: 4px 10px;
border-radius: 999px;
font-size: 12px;
color: #425466;
background: #e9eff8;
strong {
margin-left: 4px;
font-size: 13px;
color: #1f3d72;
}
}
.filters_controls {
margin-bottom: 14px;
padding: 12px;
border-radius: 10px;
border: 1px solid #dbe2ea;
background: #fff;
}
.filters_label {
display: block;
margin-bottom: 6px;
font-size: 12px;
font-weight: 600;
color: #425466;
}
select[name="filtr"] {
margin-bottom: 10px;
margin-bottom: 12px;
height: 40px;
border-color: #d1dae4;
&:focus {
border-color: #5f88e9;
box-shadow: 0 0 0 3px rgba(95, 136, 233, 0.15);
}
}
._buttons {
display: flex;
gap: 10px;
justify-content: space-between;
gap: 8px;
.btn {
flex: 1;
min-height: 34px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.3px;
}
.btn-dark {
background: #3d495e;
&:hover {
background: #2f394c;
}
}
}
.filters_section {
border: 1px solid #dbe2ea;
border-radius: 10px;
background: #fff;
margin-bottom: 12px;
overflow: hidden;
}
.filters_section_header {
display: flex;
gap: 8px;
align-items: center;
justify-content: space-between;
padding: 10px 12px;
background: #f4f7fb;
border-bottom: 1px solid #e3eaf2;
h4 {
margin: 0;
font-size: 14px;
font-weight: 700;
color: #243447;
}
.filters_search {
max-width: 170px;
height: 32px;
font-size: 12px;
padding: 4px 10px;
border-color: #d2dbe6;
}
}
.filters_section_list {
max-height: 270px;
overflow-y: auto;
padding: 6px;
}
.filters_section._projects .filters_section_list {
max-height: none;
overflow: visible;
}
.filters_item {
border-radius: 8px;
transition: background 0.2s ease;
&:hover {
background: #f4f7fb;
}
}
.project_row,
._user {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 5px 7px;
label {
margin: 0;
flex: 1;
font-weight: 400;
font-size: 14px;
white-space: nowrap;
}
}
.project_count {
display: inline-block;
margin-left: 4px;
min-width: 26px;
padding: 0 7px;
border-radius: 999px;
background: #1f3d72;
color: #fff;
font-weight: 700;
font-size: 11px;
line-height: 19px;
text-align: center;
vertical-align: middle;
}
.project_delete_inline {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
border-radius: 5px;
border: 1px solid #cc563d;
background: #cc563d;
color: #fff;
text-decoration: none;
transition: all 0.2s ease;
margin: 1px 0;
&:hover {
background: #b74831;
border-color: #b74831;
}
i {
font-size: 10px;
}
}
}
._right_column {
flex: 1;
max-width: calc(100% - 350px);
max-width: none;
min-width: 0;
}
}
@media (max-width: 1200px) {
.tasks_main_view {
flex-direction: column;
._left_column,
._right_column {
max-width: 100%;
width: 100%;
}
}
}
.gantt-target {
.gantt-container.gantt-draggable {
cursor: grab;
}
.gantt-container.gantt-dragging {
cursor: grabbing;
}
}