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;
|
2024-03-28 00:20:38 +01:00
|
|
|
cursor: default;
|
2021-04-20 06:13:03 +02:00
|
|
|
}
|
|
|
|
|
2024-04-07 18:19:25 +02:00
|
|
|
.project-column .issue-card {
|
|
|
|
color: var(--color-text);
|
|
|
|
}
|
|
|
|
|
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-title {
|
2021-04-20 06:13:03 +02:00
|
|
|
background: none !important;
|
|
|
|
line-height: 1.25 !important;
|
2024-04-07 18:19:25 +02:00
|
|
|
color: inherit !important;
|
2024-05-17 00:45:25 +02:00
|
|
|
cursor: inherit;
|
2024-04-07 18:19:25 +02:00
|
|
|
}
|
|
|
|
|
2024-05-17 22:48:36 +02:00
|
|
|
.project-column-title-label {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-column-header > .dropdown {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
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;
|
2024-04-07 18:19:25 +02:00
|
|
|
border-color: currentcolor;
|
|
|
|
opacity: .5;
|
2021-04-20 06:13:03 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
2024-03-28 00:20:38 +01:00
|
|
|
border-color: var(--color-secondary-dark-4) !important;
|
2021-04-20 06:13:03 +02:00
|
|
|
border-style: dashed !important;
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-ghost * {
|
|
|
|
opacity: 0;
|
|
|
|
}
|