|
@@ -52,11 +52,17 @@
|
|
|
/* JS-driven toggle (sprint-planner.js): when the rendered task table
|
|
/* JS-driven toggle (sprint-planner.js): when the rendered task table
|
|
|
is wider than the viewport, rotate worker-column headers to save
|
|
is wider than the viewport, rotate worker-column headers to save
|
|
|
horizontal space. Leaves non-worker headers (Task / Owner / Prio
|
|
horizontal space. Leaves non-worker headers (Task / Owner / Prio
|
|
|
- / Tot) untouched. */
|
|
|
|
|
|
|
+ / Tot) untouched. The rotation lives on an inline-block wrapper
|
|
|
|
|
+ (.beamer-th-content) rather than the <th> itself, so the cell's
|
|
|
|
|
+ `text-align: center` centers the vertical text horizontally
|
|
|
|
|
+ inside the cell. */
|
|
|
.beamer-vertical-headers thead th[data-sort-col^="sw-"] {
|
|
.beamer-vertical-headers thead th[data-sort-col^="sw-"] {
|
|
|
|
|
+ padding: 0.5rem 0.25rem;
|
|
|
|
|
+ }
|
|
|
|
|
+ .beamer-vertical-headers thead th[data-sort-col^="sw-"] > .beamer-th-content {
|
|
|
|
|
+ display: inline-block;
|
|
|
writing-mode: vertical-rl;
|
|
writing-mode: vertical-rl;
|
|
|
transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
|
- padding: 0.5rem 0.25rem;
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* Phase 18: per-cell task-assignment status. The colour class lives
|
|
/* Phase 18: per-cell task-assignment status. The colour class lives
|