Files
Atay-Makhzan/web_src/css/features/projects.css
T

105 lines
2.0 KiB
CSS
Raw Normal View History

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;
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;
cursor: default;
2021-04-20 06:13:03 +02:00
}
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;
cursor: inherit;
2021-04-20 06:13:03 +02:00
}
2023-08-12 12:30:28 +02:00
.project-column > .cards {
2021-04-20 06:13:03 +02:00
flex: 1;
display: flex;
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 {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-align: center;
}
2023-08-12 12:30:28 +02:00
.card-attachment-images img {
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 {
max-height: 90px;
margin: auto;
}
2021-04-20 06:13:03 +02:00
.card-ghost {
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;
}