2021-04-20 06:13:03 +02:00
|
|
|
.board {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
overflow-x: auto;
|
2023-03-15 03:20:19 +01:00
|
|
|
margin: 0 0.5em;
|
2021-04-20 06:13:03 +02:00
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column {
|
2021-04-20 06:13:03 +02:00
|
|
|
background-color: var(--color-project-board-bg) !important;
|
|
|
|
border: 1px solid var(--color-secondary) !important;
|
2023-03-15 03:20:19 +01:00
|
|
|
margin: 0 0.5rem !important;
|
|
|
|
padding: 0.5rem !important;
|
2021-04-20 06:13:03 +02:00
|
|
|
width: 320px;
|
2022-12-14 22:14:50 +01:00
|
|
|
height: calc(100vh - 450px);
|
|
|
|
min-height: 60vh;
|
2021-04-20 06:13:03 +02:00
|
|
|
overflow-y: scroll;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
overflow: visible;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column-header {
|
2021-04-20 06:13:03 +02:00
|
|
|
display: flex;
|
2023-08-12 12:30:28 +02:00
|
|
|
align-items: center;
|
2021-04-20 06:13:03 +02:00
|
|
|
justify-content: space-between;
|
2023-03-15 03:20:19 +01:00
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column-header.dark-label {
|
2023-03-15 03:20:19 +01:00
|
|
|
color: var(--color-project-board-dark-label) !important;
|
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column-header.dark-label .project-column-title {
|
2023-03-15 03:20:19 +01:00
|
|
|
color: var(--color-project-board-dark-label) !important;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column-header.light-label {
|
2023-03-15 03:20:19 +01:00
|
|
|
color: var(--color-project-board-light-label) !important;
|
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column-header.light-label .project-column-title {
|
2023-03-15 03:20:19 +01:00
|
|
|
color: var(--color-project-board-light-label) !important;
|
2021-04-20 06:13:03 +02:00
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column-title {
|
2021-04-20 06:13:03 +02:00
|
|
|
background: none !important;
|
|
|
|
line-height: 1.25 !important;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column > .cards {
|
2021-04-20 06:13:03 +02:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
2022-03-08 17:42:28 +01:00
|
|
|
align-content: baseline;
|
2021-04-20 06:13:03 +02:00
|
|
|
margin: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
flex-wrap: nowrap !important;
|
|
|
|
flex-direction: column;
|
2023-08-12 12:30:28 +02:00
|
|
|
overflow-x: auto;
|
|
|
|
gap: .25rem;
|
2021-04-20 06:13:03 +02:00
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column > .divider {
|
2021-04-20 06:13:03 +02:00
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column:first-child {
|
2021-04-20 06:13:03 +02:00
|
|
|
margin-left: auto !important;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.project-column:last-child {
|
2021-04-20 06:13:03 +02:00
|
|
|
margin-right: auto !important;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.card-attachment-images {
|
2023-02-11 09:12:41 +01:00
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.card-attachment-images img {
|
2023-02-11 09:12:41 +01:00
|
|
|
display: inline-block;
|
|
|
|
max-height: 50px;
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.card-attachment-images img:only-child {
|
2023-02-11 09:12:41 +01:00
|
|
|
max-height: 90px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2021-04-20 06:13:03 +02:00
|
|
|
.card-ghost {
|
|
|
|
border-style: dashed !important;
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-ghost * {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
|
|
|
.color-field .minicolors.minicolors-theme-default {
|
|
|
|
display: block;
|
2023-03-15 03:20:19 +01:00
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
2023-03-15 03:20:19 +01:00
|
|
|
.color-field .minicolors.minicolors-theme-default .minicolors-input {
|
|
|
|
height: 38px;
|
|
|
|
padding-left: 2rem;
|
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
2023-03-15 03:20:19 +01:00
|
|
|
.color-field .minicolors.minicolors-theme-default .minicolors-swatch {
|
|
|
|
top: 10px;
|
2021-09-29 22:53:12 +02:00
|
|
|
}
|
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.edit-project-column-modal .color.picker.column,
|
|
|
|
.new-project-column-modal .color.picker.column {
|
2023-03-15 03:20:19 +01:00
|
|
|
display: flex;
|
|
|
|
}
|
2021-09-29 22:53:12 +02:00
|
|
|
|
2023-08-12 12:30:28 +02:00
|
|
|
.edit-project-column-modal .color.picker.column .minicolors,
|
|
|
|
.new-project-column-modal .color.picker.column .minicolors {
|
2023-03-15 03:20:19 +01:00
|
|
|
flex: 1;
|
2021-09-29 22:53:12 +02:00
|
|
|
}
|