code.gitea.io/gitea@v1.22.3/web_src/css/features/projects.css (about) 1 .board { 2 display: flex; 3 flex-direction: row; 4 flex-wrap: nowrap; 5 overflow-x: auto; 6 margin: 0 0.5em; 7 } 8 9 .project-column { 10 background-color: var(--color-project-board-bg) !important; 11 border: 1px solid var(--color-secondary) !important; 12 border-radius: var(--border-radius); 13 margin: 0 0.5rem !important; 14 padding: 0.5rem !important; 15 width: 320px; 16 height: calc(100vh - 450px); 17 min-height: 60vh; 18 flex: 0 0 auto; 19 overflow: visible; 20 display: flex; 21 flex-direction: column; 22 cursor: default; 23 } 24 25 .project-column .issue-card { 26 color: var(--color-text); 27 } 28 29 .project-column-header { 30 display: flex; 31 align-items: center; 32 justify-content: space-between; 33 gap: 0.5em; 34 } 35 36 .ui.label.project-column-issue-count { 37 color: inherit; 38 } 39 40 .project-column-title-label { 41 flex: 1; 42 } 43 44 .project-column > .cards { 45 flex: 1; 46 display: flex; 47 align-content: baseline; 48 margin: 0 !important; 49 padding: 0 !important; 50 flex-wrap: nowrap !important; 51 flex-direction: column; 52 overflow-x: auto; 53 gap: .25rem; 54 } 55 56 .project-column > .divider { 57 margin: 5px 0; 58 border-color: currentcolor; 59 opacity: .5; 60 } 61 62 .project-column:first-child { 63 margin-left: auto !important; 64 } 65 66 .project-column:last-child { 67 margin-right: auto !important; 68 } 69 70 .card-attachment-images { 71 display: inline-block; 72 white-space: nowrap; 73 overflow: scroll; 74 cursor: default; 75 scroll-snap-type: x mandatory; 76 text-align: center; 77 } 78 79 .card-attachment-images img { 80 display: inline-block; 81 max-height: 50px; 82 border-radius: var(--border-radius); 83 text-align: left; 84 scroll-snap-align: center; 85 margin-right: 2px; 86 aspect-ratio: 1; 87 } 88 89 .card-attachment-images img:only-child { 90 max-height: 90px; 91 margin: auto; 92 } 93 94 .card-ghost { 95 border-color: var(--color-secondary-dark-4) !important; 96 border-style: dashed !important; 97 background: none !important; 98 } 99 100 .card-ghost * { 101 opacity: 0; 102 }