| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106 |
- .list {
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- position: relative;
- background: #dedede;
- border-left: 1px solid #ccc;
- padding: 0;
- float: left;
- }
- /* List resize handle */
- .list-resize-handle {
- position: absolute;
- top: 0;
- right: -3px;
- width: 6px;
- height: 100%;
- cursor: col-resize;
- z-index: 10;
- background: transparent;
- transition: background-color 0.2s ease;
- border-radius: 2px;
- /* Ensure the handle is clickable */
- pointer-events: auto;
- }
- .list-resize-handle:hover {
- background: rgba(0, 123, 255, 0.4);
- box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
- }
- .list-resize-handle:active {
- background: rgba(0, 123, 255, 0.6);
- box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
- }
- /* Show resize handle only on hover */
- .list:hover .list-resize-handle {
- background: rgba(0, 0, 0, 0.1);
- }
- .list:hover .list-resize-handle:hover {
- background: rgba(0, 123, 255, 0.4);
- box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
- }
- /* Add a subtle indicator line */
- .list-resize-handle::before {
- content: '';
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 2px;
- height: 20px;
- background: rgba(0, 0, 0, 0.2);
- border-radius: 1px;
- opacity: 0;
- transition: opacity 0.2s ease;
- }
- .list-resize-handle:hover::before {
- opacity: 1;
- }
- /* Disable resize handle for collapsed lists and mobile view */
- .list.list-collapsed .list-resize-handle,
- .list.mobile-view .list-resize-handle {
- display: none;
- }
- /* Disable resize handle for auto-width lists */
- .list.list-auto-width .list-resize-handle {
- display: none;
- }
- /* Visual feedback during resize */
- .list.list-resizing {
- transition: none !important;
- box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
- /* Ensure the list maintains its new width during resize */
- flex: none !important;
- flex-basis: auto !important;
- flex-grow: 0 !important;
- flex-shrink: 0 !important;
- /* Override any conflicting layout properties */
- float: left !important;
- display: block !important;
- position: relative !important;
- /* Force width to be respected */
- width: var(--list-width, auto) !important;
- min-width: var(--list-width, auto) !important;
- max-width: var(--list-width, auto) !important;
- /* Ensure the width is applied immediately */
- overflow: visible !important;
- }
- body.list-resizing-active {
- cursor: col-resize !important;
- }
- body.list-resizing-active * {
- cursor: col-resize !important;
- }
- /* Ensure swimlane container doesn't interfere with list resizing */
- .swimlane .list.list-resizing {
- /* Override any swimlane flex properties */
- flex: none !important;
- flex-basis: auto !important;
- flex-grow: 0 !important;
- flex-shrink: 0 !important;
- /* Ensure width is respected */
- width: var(--list-width, auto) !important;
- min-width: var(--list-width, auto) !important;
- max-width: var(--list-width, auto) !important;
- }
- /* More aggressive override for any container that might interfere */
- .js-swimlane .list.list-resizing,
- .dragscroll .list.list-resizing,
- [id^="swimlane-"] .list.list-resizing {
- /* Force the width to be applied */
- width: var(--list-width, auto) !important;
- min-width: var(--list-width, auto) !important;
- max-width: var(--list-width, auto) !important;
- flex: none !important;
- flex-basis: auto !important;
- flex-grow: 0 !important;
- flex-shrink: 0 !important;
- float: left !important;
- display: block !important;
- }
- /* Ensure the width persists after resize is complete */
- .js-swimlane .list[style*="--list-width"],
- .dragscroll .list[style*="--list-width"],
- [id^="swimlane-"] .list[style*="--list-width"] {
- /* Maintain the width after resize */
- width: var(--list-width, auto) !important;
- min-width: var(--list-width, auto) !important;
- max-width: var(--list-width, auto) !important;
- flex: none !important;
- flex-basis: auto !important;
- flex-grow: 0 !important;
- flex-shrink: 0 !important;
- float: left !important;
- display: block !important;
- }
- /* Ensure consistent header height for all lists */
- .list-header {
- /* Maintain consistent height and padding for all lists */
- min-height: 2.5vh !important;
- height: auto !important;
- padding: 2.5vh 1.5vw 0.5vh !important;
- /* Make sure the background covers the full height */
- background-color: #e4e4e4 !important;
- border-bottom: 0.8vh solid #e4e4e4 !important;
- /* Use original display for consistent button positioning */
- display: block !important;
- position: relative !important;
- /* Prevent vertical expansion but allow normal height */
- overflow: hidden !important;
- }
- /* Ensure title text doesn't cause height changes for all lists */
- .list-header .list-header-name {
- /* Prevent text wrapping to maintain consistent height */
- white-space: nowrap !important;
- /* Truncate text with ellipsis if too long */
- text-overflow: ellipsis !important;
- /* Ensure proper line height */
- line-height: 1.2 !important;
- /* Ensure it doesn't overflow */
- overflow: hidden !important;
- /* Add margin to prevent overlap with buttons */
- margin-right: 120px !important;
- }
- /* Position drag handle at top-right corner for ALL lists */
- .list-header .list-header-handle {
- /* Position at top-right corner, aligned with title text top */
- position: absolute !important;
- top: 2.5vh !important;
- right: 1.5vw !important;
- /* Ensure it's above other elements */
- z-index: 15 !important;
- /* Remove margin since it's absolutely positioned */
- margin-right: 0 !important;
- /* Ensure proper display */
- display: inline-block !important;
- /* Ensure it's clickable and shows proper cursor */
- cursor: move !important;
- pointer-events: auto !important;
- /* Add some padding for better clickability */
- padding: 4px !important;
- }
- /* Ensure buttons maintain original positioning */
- .js-swimlane .list[style*="--list-width"] .list-header .list-header-plus-top,
- .js-swimlane .list[style*="--list-width"] .list-header .js-collapse,
- .js-swimlane .list[style*="--list-width"] .list-header .js-open-list-menu,
- .dragscroll .list[style*="--list-width"] .list-header .list-header-plus-top,
- .dragscroll .list[style*="--list-width"] .list-header .js-collapse,
- .dragscroll .list[style*="--list-width"] .list-header .js-open-list-menu,
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .list-header-plus-top,
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .js-collapse,
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .js-open-list-menu {
- /* Use original positioning to maintain layout */
- position: relative !important;
- /* Maintain original spacing */
- margin-right: 15px !important;
- /* Ensure proper display */
- display: inline-block !important;
- }
- /* Ensure watch icon and card count maintain original positioning */
- .js-swimlane .list[style*="--list-width"] .list-header .list-header-watch-icon,
- .dragscroll .list[style*="--list-width"] .list-header .list-header-watch-icon,
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .list-header-watch-icon,
- .js-swimlane .list[style*="--list-width"] .list-header .cardCount,
- .dragscroll .list[style*="--list-width"] .list-header .cardCount,
- [id^="swimlane-"] .list[style*="--list-width"] .list-header .cardCount {
- /* Use original positioning to maintain layout */
- position: relative !important;
- /* Maintain original spacing */
- margin-right: 15px !important;
- /* Ensure proper display */
- display: inline-block !important;
- }
- [id^="swimlane-"] .list:first-child {
- min-width: 2.5vw;
- }
- .list.list-auto-width {
- flex: 1;
- }
- .list:first-child {
- border-left: none;
- flex: none;
- }
- .card-details + .list {
- border-left: none;
- }
- .list.ui-sortable-helper {
- box-shadow: -2px 2px 8px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.5);
- transform: rotate(4deg);
- cursor: grabbing;
- }
- .list.ui-sortable-helper .list-header.ui-sortable-handle {
- cursor: grabbing;
- }
- .list.placeholder {
- background-color: rgba(0,0,0,0.2);
- border-color: transparent;
- box-shadow: none;
- height: 15vh;
- }
- .list.list-collapsed {
- flex: none;
- min-width: 60px;
- max-width: 80px;
- width: 60px;
- min-height: 60vh;
- height: 60vh;
- overflow: visible;
- position: relative;
- }
- .list.list-collapsed .list-header {
- padding: 1vh 1.5vw 0.5vh;
- min-height: 2.5vh !important;
- height: auto !important;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- position: relative;
- overflow: visible !important;
- width: 100%;
- max-width: 60px;
- margin: 0 auto;
- }
- .list.list-collapsed .list-header .js-collapse {
- margin: 0 auto 20px auto;
- z-index: 10;
- padding: 8px 12px;
- font-size: 12px;
- white-space: nowrap;
- display: block;
- width: fit-content;
- }
- .list.list-collapsed .list-header .list-rotated {
- width: auto !important;
- height: auto !important;
- margin: 20px 0 0 0 !important;
- position: relative !important;
- overflow: visible !important;
- }
- .list.list-collapsed .list-header .list-rotated h2.list-header-name {
- text-align: left;
- overflow: visible;
- white-space: nowrap;
- display: block !important;
- font-size: 12px;
- line-height: 1.2;
- color: #333;
- background-color: rgba(255, 255, 255, 0.95);
- border: 1px solid #ddd;
- padding: 8px 4px;
- border-radius: 4px;
- margin: 0 auto;
- width: 25vh;
- height: 60vh;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
- z-index: 10;
- visibility: visible !important;
- opacity: 1 !important;
- pointer-events: none;
- }
- .list.list-composer .open-list-composer,
- .list .list-composer .open-list-composer {
- color: #8c8c8c;
- }
- .list.list-composer .list-name-input,
- .list .list-composer .list-name-input {
- background: #fff;
- margin: -0.4vh 0 1vh;
- }
- .list-header-add {
- flex: 0 0 auto;
- padding: 1.5vh 1.5vw;
- position: relative;
- min-height: 2.5vh;
- }
- .list-header {
- flex: 0 0 auto;
- padding: 2.5vh 1.5vw 0.5vh;
- position: relative;
- min-height: 2.5vh;
- background-color: #e4e4e4;
- border-bottom: 0.8vh solid #e4e4e4;
- }
- .list-header.list-header-card-count {
- min-height: 4.5vh;
- height: auto;
- }
- .list-header.ui-sortable-handle {
- cursor: grab;
- }
- .list-header .list-header-left-icon {
- display: none;
- }
- .list-header .list-header-name {
- display: inline;
- font-size: clamp(14px, 3vw, 18px);
- line-height: 1.2;
- margin: 0;
- font-weight: bold;
- min-height: 1.2vh;
- min-width: 4vw;
- overflow: hidden;
- text-overflow: ellipsis;
- word-wrap: break-word;
- }
- .list-rotated {
- width: 1.3vw;
- height: 35vh;
- margin-top: -12vh;
- margin-left: -14vw;
- margin-right: 0;
- transform: rotate(90deg);
- position: relative;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .list-header .list-rotated {
- }
- .list-header .list-header-watch-icon {
- padding-left: 10px;
- color: #a6a6a6;
- }
- .list-header .list-header-menu {
- float: right;
- }
- @media print {
- .list-header .list-header-menu,
- .list-header .list-header-menu-icon {
- display: none;
- }
- }
- .list-header .list-header-plus-top {
- color: #a6a6a6;
- margin-right: 15px;
- }
- .list-header .list-header-collapse-right {
- color: #a6a6a6;
- }
- .list-header .list-header-collapse-left {
- color: #a6a6a6;
- margin-right: 15px;
- }
- .list-header .js-collapse {
- color: #a6a6a6;
- margin-right: 15px;
- display: inline-block;
- vertical-align: middle;
- padding: 5px 8px;
- border: 1px solid #ccc;
- border-radius: 4px;
- background-color: #f5f5f5;
- cursor: pointer;
- font-size: 14px;
- }
- .list-header .js-collapse:hover {
- background-color: #e0e0e0;
- color: #333;
- }
- .list.list-collapsed .list-header .js-collapse {
- display: inline-block !important;
- visibility: visible !important;
- opacity: 1 !important;
- }
- /* Responsive adjustments for collapsed lists */
- @media (min-width: 768px) {
- .list.list-collapsed {
- min-width: 60px;
- max-width: 80px;
- width: 60px;
- min-height: 60vh;
- height: 60vh;
- }
- .list.list-collapsed .list-header {
- max-width: 60px;
- margin: 0 auto;
- min-height: 2.5vh !important;
- height: auto !important;
- }
- .list.list-collapsed .list-header .list-rotated {
- width: auto !important;
- height: auto !important;
- margin: 20px 0 0 0 !important;
- position: relative !important;
- }
- .list.list-collapsed .list-header .list-rotated h2.list-header-name {
- width: 15vh;
- font-size: 12px;
- height: 30px;
- line-height: 1.2;
- padding: 8px 4px;
- margin: 0 auto;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
- text-align: left;
- visibility: visible !important;
- opacity: 1 !important;
- display: block !important;
- background-color: rgba(255, 255, 255, 0.95);
- border: 1px solid #ddd;
- color: #333;
- z-index: 10;
- }
- .list.list-collapsed .list-header .js-collapse {
- margin: 0 auto 20px auto;
- }
- }
- @media (min-width: 1024px) {
- .list.list-collapsed {
- min-height: 60vh;
- height: 60vh;
- }
- .list.list-collapsed .list-header {
- min-height: 2.5vh !important;
- height: auto !important;
- }
- .list.list-collapsed .list-header .list-rotated {
- width: auto !important;
- height: auto !important;
- margin: 20px 0 0 0 !important;
- position: relative !important;
- }
- .list.list-collapsed .list-header .list-rotated h2.list-header-name {
- width: 15vh;
- font-size: 12px;
- height: 30px;
- line-height: 1.2;
- padding: 8px 4px;
- margin: 0 auto;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
- text-align: left;
- visibility: visible !important;
- opacity: 1 !important;
- display: block !important;
- background-color: rgba(255, 255, 255, 0.95);
- border: 1px solid #ddd;
- color: #333;
- z-index: 10;
- }
- .list.list-collapsed .list-header .js-collapse {
- margin: 0 auto 20px auto;
- }
- }
- @media (min-width: 1200px) {
- .list.list-collapsed {
- min-height: 60vh;
- height: 60vh;
- }
- .list.list-collapsed .list-header {
- min-height: 2.5vh !important;
- height: auto !important;
- }
- .list.list-collapsed .list-header .list-rotated {
- width: auto !important;
- height: auto !important;
- margin: 20px 0 0 0 !important;
- position: relative !important;
- }
- .list.list-collapsed .list-header .list-rotated h2.list-header-name {
- width: 15vh;
- font-size: 12px;
- height: 30px;
- line-height: 1.2;
- padding: 8px 4px;
- margin: 0 auto;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(calc(-50% + 50px), -50%) rotate(0deg);
- text-align: left;
- visibility: visible !important;
- opacity: 1 !important;
- display: block !important;
- background-color: rgba(255, 255, 255, 0.95);
- border: 1px solid #ddd;
- color: #333;
- z-index: 10;
- }
- .list.list-collapsed .list-header .js-collapse {
- margin: 0 auto 20px auto;
- }
- }
- .list-header .list-header-collapse {
- color: #a6a6a6;
- margin-right: 15px;
- }
- .list-header .highlight {
- color: #ce1414;
- }
- .list-header .cardCount {
- color: #8c8c8c;
- font-size: 12px;
- font-weight: bold;
- }
- .list-header .list-header-plus-top,
- .js-open-list-menu,
- .list-header-menu a {
- color: #4d4d4d;
- padding-left: 4px;
- }
- .js-open-list-menu {
- font-size: 18px;
- }
- .list-body {
- flex: 1 1 auto;
- flex-direction: column;
- display: flex;
- overflow-y: auto;
- padding: 5px 11px;
- }
- .list-body .minicards {
- flex-grow: 1;
- flex-shrink: 0;
- /** get card drag/drop working for empty swimlanes */
- min-height: 32px;
- }
- .list-body .minicards form {
- margin-bottom: 9px;
- }
- .list-body .minicards .add-controls button {
- min-height: 50px;
- }
- .list-body .open-minicard-composer {
- border-radius: 2px;
- color: #8c8c8c;
- display: block;
- padding: 7px 10px;
- position: relative;
- text-decoration: none;
- animation: fadeIn 0.3s;
- }
- @media print {
- .list-body .open-minicard-composer {
- display: none;
- }
- }
- .list-body .open-minicard-composer i.fa {
- margin-right: 7px;
- }
- .list-body .open-minicard-composer:hover {
- background: #fafafa;
- color: #222;
- box-shadow: 0 1px 2px rgba(0,0,0,0.2);
- }
- #js-wip-limit-edit {
- padding-top: 2%;
- }
- #js-wip-limit-edit p {
- margin-bottom: 0;
- }
- #js-wip-limit-edit input {
- display: inline-block;
- }
- #js-wip-limit-edit .wip-limit-value {
- width: 20%;
- margin-right: 5%;
- }
- #js-wip-limit-edit .wip-limit-error {
- display: none;
- }
- #js-wip-limit-edit .soft-wip-limit {
- margin-right: 8px;
- }
- #js-wip-limit-edit div {
- float: left;
- }
- #js-list-width-edit .list-width-error {
- display: none;
- }
- /* Mobile view styles - applied when isMiniScreen is true (iPhone, etc.) */
- .mini-list.mobile-view {
- flex: 0 0 60px;
- height: auto;
- width: 100%;
- min-width: 100%;
- border-left: 0px;
- border-bottom: 1px solid #ccc;
- }
- .list.mobile-view {
- display: contents;
- flex-basis: auto;
- width: 100%;
- min-width: 100%;
- border-left: 0px;
- }
- .list.mobile-view:first-child {
- margin-left: 0px;
- }
- .list.mobile-view.ui-sortable-helper {
- flex: 0 0 60px;
- height: 60px;
- width: 100%;
- border-left: 0px;
- border-bottom: 1px solid #ccc;
- }
- .list.mobile-view.ui-sortable-helper .list-header.ui-sortable-handle {
- cursor: grabbing;
- }
- .list.mobile-view.placeholder {
- flex: 0 0 60px;
- height: 60px;
- width: 100%;
- border-left: 0px;
- border-bottom: 1px solid #ccc;
- }
- .list.mobile-view .list-body {
- padding: 15px 19px;
- width: 100%;
- min-width: 100%;
- }
- .list.mobile-view .list-header {
- /*Updated padding values for mobile devices, this should fix text grouping issue*/
- padding: 20px 0px 20px 0px;
- border-bottom: 0px solid #e4e4e4;
- min-height: 30px;
- margin-top: 10px;
- align-items: center;
- width: 100%;
- min-width: 100%;
- /* Force grid layout for iPhone */
- display: grid !important;
- grid-template-columns: 30px 1fr auto auto !important;
- gap: 10px !important;
- }
- .list.mobile-view .list-header .list-header-left-icon {
- padding: 7px;
- padding-right: 27px;
- margin-top: 1px;
- top: -7px;
- left: -7px;
- }
- .list.mobile-view .list-header .list-header-menu-icon {
- padding: 14px;
- font-size: 40px !important;
- text-align: center;
- /* Force positioning for iPhone */
- position: absolute !important;
- right: 60px !important;
- top: 50% !important;
- transform: translateY(-50%) !important;
- z-index: 10;
- }
- .list.mobile-view .list-header .list-header-handle {
- padding: 14px;
- font-size: 48px !important;
- text-align: center;
- /* Force positioning for iPhone */
- position: absolute !important;
- right: 10px !important;
- top: 50% !important;
- transform: translateY(-50%) !important;
- z-index: 10;
- }
- .list.mobile-view .list-header .list-header-left-icon {
- display: grid;
- grid-row: 1/3;
- grid-column: 1;
- }
- .list.mobile-view .list-header .list-header-name {
- grid-row: 1;
- grid-column: 2;
- align-self: end;
- font-size: 20px !important;
- font-weight: bold;
- line-height: 1.2;
- padding-bottom: 2px;
- }
- .list.mobile-view .list-header .cardCount {
- grid-row: 2;
- grid-column: 2;
- align-self: start;
- font-size: 16px !important;
- line-height: 1.2;
- }
- .list.mobile-view .list-header .list-header-menu {
- grid-row: 1/3;
- grid-column: 3;
- }
- .list.mobile-view .list-header .list-header-menu-icon {
- grid-row: 1/3;
- grid-column: 3;
- }
- .list.mobile-view .list-header .list-header-handle {
- grid-row: 1/3;
- grid-column: 4;
- }
- .list.mobile-view .list-header .inlined-form {
- grid-row: 1/3;
- grid-column: 1/4;
- }
- .list.mobile-view .list-header .edit-controls {
- align-items: initial;
- }
- @media screen and (max-width: 800px) {
- .mini-list {
- flex: 0 0 60px;
- height: auto;
- width: 100%;
- min-width: 100%;
- border-left: 0px;
- border-bottom: 1px solid #ccc;
- }
- .list {
- display: contents;
- flex-basis: auto;
- width: 100%;
- min-width: 100%;
- border-left: 0px;
- }
- .list:first-child {
- margin-left: 0px;
- }
- .list.ui-sortable-helper {
- flex: 0 0 60px;
- height: 60px;
- width: 100%;
- border-left: 0px;
- border-bottom: 1px solid #ccc;
- }
- .list.ui-sortable-helper .list-header.ui-sortable-handle {
- cursor: grabbing;
- }
- .list.placeholder {
- flex: 0 0 60px;
- height: 60px;
- width: 100%;
- border-left: 0px;
- border-bottom: 1px solid #ccc;
- }
- .list-body {
- padding: 15px 19px;
- width: 100%;
- min-width: 100%;
- }
- .list-header {
- /*Updated padding values for mobile devices, this should fix text grouping issue*/
- padding: 20px 0px 20px 0px;
- border-bottom: 0px solid #e4e4e4;
- min-height: 30px;
- margin-top: 10px;
- align-items: center;
- width: 100%;
- min-width: 100%;
- }
- .list-header .list-header-left-icon {
- padding: 7px;
- padding-right: 27px;
- margin-top: 1px;
- top: -7px;
- left: -7px;
- }
- .list-header .list-header-menu-icon {
- padding: 14px;
- font-size: 40px;
- text-align: center;
- /* iOS Safari fallback positioning */
- position: absolute;
- right: 60px;
- top: 50%;
- transform: translateY(-50%);
- }
- .list-header .list-header-handle {
- padding: 14px;
- font-size: 48px;
- text-align: center;
- /* iOS Safari fallback positioning */
- position: absolute;
- right: 10px;
- top: 50%;
- transform: translateY(-50%);
- }
- .list-header {
- display: grid;
- grid-template-columns: 30px 1fr auto auto;
- gap: 10px;
- }
- .list-header .list-header-left-icon {
- display: grid;
- grid-row: 1/3;
- grid-column: 1;
- }
- .list-header .list-header-name {
- grid-row: 1;
- grid-column: 2;
- align-self: end;
- font-size: 20px;
- font-weight: bold;
- line-height: 1.2;
- padding-bottom: 2px;
- }
- .list-header .cardCount {
- grid-row: 2;
- grid-column: 2;
- align-self: start;
- font-size: 16px;
- line-height: 1.2;
- }
- .list-header .list-header-menu {
- grid-row: 1/3;
- grid-column: 3;
- }
- .list-header .list-header-menu-icon {
- grid-row: 1/3;
- grid-column: 3;
- }
- .list-header .list-header-handle {
- grid-row: 1/3;
- grid-column: 4;
- }
- .list-header .inlined-form {
- grid-row: 1/3;
- grid-column: 1/4;
- }
- .list-header .edit-controls {
- align-items: initial;
- }
- }
- /* iPhone 12 Mini specific - fix icon positioning in stacked lists view */
- @media screen and (device-width: 375px) and (device-height: 812px), /* iPhone 12 Mini exact */
- screen and (max-width: 375px) and (max-height: 812px), /* iPhone 12 Mini viewport */
- screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 375px) /* iPhone 12 Mini Retina */ {
- .list.mobile-view .list-header {
- /* Force grid layout for iPhone 12 Mini */
- display: grid !important;
- grid-template-columns: 30px 1fr auto auto !important;
- gap: 10px !important;
- align-items: center !important;
- }
- .list.mobile-view .list-header .list-header-menu-icon {
- /* Remove absolute positioning for iPhone 12 Mini */
- position: static !important;
- right: auto !important;
- top: auto !important;
- transform: none !important;
- /* Use grid positioning */
- grid-row: 1/3 !important;
- grid-column: 3 !important;
- padding: 14px !important;
- font-size: 40px !important;
- text-align: center !important;
- }
- .list.mobile-view .list-header .list-header-handle {
- /* Remove absolute positioning for iPhone 12 Mini */
- position: static !important;
- right: auto !important;
- top: auto !important;
- transform: none !important;
- /* Use grid positioning */
- grid-row: 1/3 !important;
- grid-column: 4 !important;
- padding: 14px !important;
- font-size: 48px !important;
- text-align: center !important;
- }
- .list.mobile-view .list-header .list-header-name {
- grid-row: 1 !important;
- grid-column: 2 !important;
- align-self: end !important;
- font-size: 20px !important;
- font-weight: bold !important;
- line-height: 1.2 !important;
- padding-bottom: 2px !important;
- }
- .list.mobile-view .list-header .cardCount {
- grid-row: 2 !important;
- grid-column: 2 !important;
- align-self: start !important;
- font-size: 16px !important;
- line-height: 1.2 !important;
- }
- .list.mobile-view .list-header .list-header-left-icon {
- display: grid !important;
- grid-row: 1/3 !important;
- grid-column: 1 !important;
- }
- }
- /* iPhone device JavaScript detection fallback - fix icon positioning */
- .iphone-device .list.mobile-view .list-header {
- /* Force grid layout for iPhone devices */
- display: grid !important;
- grid-template-columns: 30px 1fr auto auto !important;
- gap: 10px !important;
- align-items: center !important;
- }
- .iphone-device .list.mobile-view .list-header .list-header-menu-icon {
- /* Remove absolute positioning for iPhone devices */
- position: static !important;
- right: auto !important;
- top: auto !important;
- transform: none !important;
- /* Use grid positioning */
- grid-row: 1/3 !important;
- grid-column: 3 !important;
- padding: 14px !important;
- font-size: 40px !important;
- text-align: center !important;
- }
- .iphone-device .list.mobile-view .list-header .list-header-handle {
- /* Remove absolute positioning for iPhone devices */
- position: static !important;
- right: auto !important;
- top: auto !important;
- transform: none !important;
- /* Use grid positioning */
- grid-row: 1/3 !important;
- grid-column: 4 !important;
- padding: 14px !important;
- font-size: 48px !important;
- text-align: center !important;
- }
- .iphone-device .list.mobile-view .list-header .list-header-name {
- grid-row: 1 !important;
- grid-column: 2 !important;
- align-self: end !important;
- font-size: 20px !important;
- font-weight: bold !important;
- line-height: 1.2 !important;
- padding-bottom: 2px !important;
- }
- .iphone-device .list.mobile-view .list-header .cardCount {
- grid-row: 2 !important;
- grid-column: 2 !important;
- align-self: start !important;
- font-size: 16px !important;
- line-height: 1.2 !important;
- }
- .iphone-device .list.mobile-view .list-header .list-header-left-icon {
- display: grid !important;
- grid-row: 1/3 !important;
- grid-column: 1 !important;
- }
- .link-board-wrapper {
- display: flex;
- align-items: baseline;
- }
- .link-board-wrapper .js-link-board {
- margin-left: 15px;
- }
- .search-card-results {
- max-height: 250px;
- overflow: hidden;
- }
- .sk-spinner-list {
- margin-top: unset !important;
- }
- .list-header-white {
- border-bottom: 6px solid #fff;
- }
- .list-header-green {
- border-bottom: 6px solid #3cb500;
- }
- .list-header-yellow {
- border-bottom: 6px solid #fad900;
- }
- .list-header-orange {
- border-bottom: 6px solid #ff9f19;
- }
- .list-header-red {
- border-bottom: 6px solid #eb4646;
- }
- .list-header-purple {
- border-bottom: 6px solid #a632db;
- }
- .list-header-blue {
- border-bottom: 6px solid #0079bf;
- }
- .list-header-pink {
- border-bottom: 6px solid #ff78cb;
- }
- .list-header-sky {
- border-bottom: 6px solid #00c2e0;
- }
- .list-header-black {
- border-bottom: 6px solid #4d4d4d;
- }
- .list-header-lime {
- border-bottom: 6px solid #51e898;
- }
- .list-header-silver {
- border-bottom: 6px solid #e4e4e4;
- }
- .list-header-peachpuff {
- border-bottom: 6px solid #ffdab9;
- }
- .list-header-crimson {
- border-bottom: 6px solid #dc143c;
- }
- .list-header-plum {
- border-bottom: 6px solid #dda0dd;
- }
- .list-header-darkgreen {
- border-bottom: 6px solid #006400;
- }
- .list-header-slateblue {
- border-bottom: 6px solid #6a5acd;
- }
- .list-header-magenta {
- border-bottom: 6px solid #f0f;
- }
- .list-header-gold {
- border-bottom: 6px solid #ffd700;
- }
- .list-header-navy {
- border-bottom: 6px solid #000080;
- }
- .list-header-gray {
- border-bottom: 6px solid #808080;
- }
- .list-header-saddlebrown {
- border-bottom: 6px solid #8b4513;
- }
- .list-header-paleturquoise {
- border-bottom: 6px solid #afeeee;
- }
- .list-header-mistyrose {
- border-bottom: 6px solid #ffe4e1;
- }
- .list-header-indigo {
- border-bottom: 6px solid #4b0082;
- }
|