| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282 |
- @import url("../../../css/reset.css") print, screen;
- /* Board List Header with Zoom Controls */
- .board-list-header {
- display: flex;
- justify-content: center;
- margin: 1vh 0 2vh 0;
- padding: 1vh 0;
- }
- /* Two-column layout for All Boards */
- .boards-layout {
- display: grid;
- grid-template-columns: 260px 1fr;
- gap: 16px;
- }
- .boards-left-menu {
- border-right: 1px solid #e0e0e0;
- padding-right: 12px;
- }
- .boards-left-menu ul.menu {
- list-style: none;
- padding: 0;
- margin: 0 0 12px 0;
- }
- .boards-left-menu .menu-item {
- margin: 4px 0;
- }
- .boards-left-menu .menu-item a {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 8px 10px;
- border-radius: 4px;
- cursor: pointer;
- }
- .boards-left-menu .menu-item .menu-label {
- flex: 1;
- }
- .boards-left-menu .menu-item .menu-count {
- background: #ddd;
- padding: 2px 8px;
- border-radius: 12px;
- font-size: 12px;
- font-weight: bold;
- margin-left: 8px;
- }
- .boards-left-menu .menu-item.active a,
- .boards-left-menu .menu-item a:hover {
- background: #f0f0f0;
- }
- .boards-left-menu .menu-item.active .menu-count {
- background: #bbb;
- }
- /* Drag-over state for menu items (for dropping boards on Remaining) */
- .boards-left-menu .menu-item a.drag-over {
- background: #d0e8ff;
- border: 2px dashed #2196F3;
- }
- .workspaces-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-weight: bold;
- margin-top: 12px;
- }
- .workspaces-header .js-add-space {
- text-decoration: none;
- font-weight: bold;
- border: 1px solid #ccc;
- padding: 2px 8px;
- border-radius: 4px;
- }
- .workspace-tree {
- list-style: none;
- padding-left: 10px;
- }
- .workspace-node {
- margin: 2px 0;
- position: relative;
- }
- .workspace-node-content {
- display: flex;
- align-items: center;
- gap: 4px;
- padding: 4px;
- border-radius: 4px;
- transition: background-color 0.2s;
- }
- .workspace-node.dragging > .workspace-node-content {
- opacity: 0.5;
- background: #e0e0e0;
- }
- .workspace-node.drag-over > .workspace-node-content {
- background: #d0e8ff;
- border: 2px dashed #2196F3;
- }
- .workspace-drag-handle {
- cursor: grab;
- color: #999;
- font-size: 14px;
- padding: 0 4px;
- user-select: none;
- }
- .workspace-drag-handle:active {
- cursor: grabbing;
- }
- .workspace-node .js-select-space {
- display: flex;
- align-items: center;
- gap: 6px;
- padding: 4px 8px;
- border-radius: 4px;
- cursor: pointer;
- flex: 1;
- text-decoration: none;
- }
- .workspace-node .workspace-icon {
- font-size: 16px;
- line-height: 1;
- }
- .workspace-node .workspace-name {
- flex: 1;
- }
- .workspace-node .workspace-count {
- background: #ddd;
- padding: 2px 6px;
- border-radius: 10px;
- font-size: 11px;
- font-weight: bold;
- min-width: 20px;
- text-align: center;
- }
- .workspace-node .js-edit-space,
- .workspace-node .js-add-subspace {
- padding: 2px 6px;
- border-radius: 3px;
- cursor: pointer;
- text-decoration: none;
- font-size: 14px;
- opacity: 0.6;
- transition: opacity 0.2s;
- }
- .workspace-node .js-edit-space:hover,
- .workspace-node .js-add-subspace:hover {
- opacity: 1;
- background: #e0e0e0;
- }
- .workspace-node.active > .workspace-node-content .js-select-space,
- .workspace-node > .workspace-node-content:hover .js-select-space {
- background: #f0f0f0;
- }
- .workspace-node.active .workspace-count {
- background: #bbb;
- }
- .boards-right-grid {
- min-height: 200px;
- }
- .boards-path-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 8px;
- padding: 12px 16px;
- margin-bottom: 16px;
- background: #f5f5f5;
- border-radius: 6px;
- font-size: 16px;
- font-weight: 500;
- }
- .boards-path-header .path-left {
- display: flex;
- align-items: center;
- gap: 8px;
- flex: 1;
- }
- .boards-path-header .multiselection-hint {
- background: #FFF3CD;
- color: #856404;
- padding: 4px 12px;
- border-radius: 4px;
- font-size: 13px;
- font-weight: normal;
- border: 1px solid #FFE69C;
- animation: pulse 2s ease-in-out infinite;
- }
- @keyframes pulse {
- 0%, 100% { opacity: 1; }
- 50% { opacity: 0.7; }
- }
- .boards-path-header .path-right {
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .boards-path-header .path-icon {
- font-size: 18px;
- }
- .boards-path-header .path-text {
- color: #333;
- }
- .boards-path-header .board-header-btn {
- padding: 6px 12px;
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 4px;
- cursor: pointer;
- display: flex;
- align-items: center;
- gap: 6px;
- font-size: 14px;
- transition: all 0.2s;
- }
- .boards-path-header .board-header-btn:hover {
- background: #f0f0f0;
- border-color: #bbb;
- }
- .boards-path-header .board-header-btn.emphasis {
- background: #2196F3;
- color: #fff;
- border-color: #2196F3;
- font-weight: bold;
- box-shadow: 0 2px 8px rgba(33, 150, 243, 0.5);
- transform: scale(1.05);
- }
- .boards-path-header .board-header-btn.emphasis:hover {
- background: #1976D2;
- box-shadow: 0 3px 12px rgba(33, 150, 243, 0.7);
- }
- .boards-path-header .board-header-btn-close {
- padding: 4px 10px;
- background: #f44336;
- color: #000;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- font-size: 16px;
- margin-left: 10px; /* Extra space between MultiSelection toggle and Remove Filter */
- }
- .boards-path-header .board-header-btn-close:hover {
- background: #d32f2f;
- }
- .zoom-controls {
- display: flex;
- align-items: center;
- gap: 0.5vw;
- background: rgba(255, 255, 255, 0.9);
- padding: 0.5vh 1vw;
- border-radius: 0.5vw;
- box-shadow: 0 0.2vh 0.5vh rgba(0,0,0,0.1);
- }
- .zoom-controls .board-header-btn {
- padding: 0.5vh 0.8vw !important;
- border-radius: 0.3vw !important;
- background: #fff !important;
- border: 1px solid #000 !important;
- transition: all 0.2s ease !important;
- text-decoration: none !important;
- color: #000 !important;
- display: flex !important;
- align-items: center !important;
- gap: 0.3vw !important;
- height: auto !important;
- line-height: normal !important;
- margin: 0 !important;
- float: none !important;
- overflow: visible !important;
- }
- .zoom-controls .board-header-btn i {
- color: #000 !important;
- float: none !important;
- display: inline !important;
- line-height: normal !important;
- margin: 0 !important;
- }
- .zoom-controls .board-header-btn:hover {
- background: #000 !important;
- border-color: #000 !important;
- color: #fff !important;
- }
- .zoom-controls .board-header-btn:hover i {
- color: #fff !important;
- }
- .zoom-controls .board-header-btn.is-active {
- background: #0079bf;
- color: white;
- border-color: #005a8a;
- }
- .zoom-controls .board-header-btn.is-active i {
- color: white;
- }
- .zoom-level {
- font-weight: bold;
- color: #333;
- min-width: 3vw;
- text-align: center;
- font-size: clamp(12px, 2vw, 14px);
- cursor: pointer;
- padding: 0.3vh 0.5vw;
- border-radius: 0.3vw;
- transition: all 0.2s ease;
- }
- .zoom-level:hover {
- background: #f0f0f0;
- color: #000;
- }
- .board-list {
- margin: 0 8px;
- }
- .board-list li {
- float: left;
- width: 20%;
- box-sizing: border-box;
- position: relative;
- }
- .board-list li.placeholder:after {
- content: '';
- display: block;
- background: #ccc;
- border-radius: 3px;
- height: 106px;
- margin: 8px;
- }
- .board-list li.ui-sortable-helper {
- cursor: grabbing;
- transform: rotate(4deg);
- display: block !important;
- }
- .board-list li.starred .is-star-active,
- .board-list li.starred .is-not-star-active {
- opacity: 1;
- color: #ffd700;
- }
- /* Show star icon on hover even for non-starred boards */
- .board-list li:hover .is-star-active,
- .board-list li:hover .is-not-star-active {
- opacity: 1;
- }
- .board-list .board-list-item {
- overflow: hidden;
- background-color: inherit; /* Inherit board color from parent li.js-board */
- color: #f6f6f6;
- min-height: 100px;
- font-size: 16px;
- line-height: 22px;
- border-radius: 0; /* No border-radius - parent .js-board has it */
- display: block;
- font-weight: 700;
- padding: 36px 8px 32px 8px; /* Top padding for drag handle, bottom for checkbox */
- margin: 0; /* No margin - moved to parent .js-board */
- position: relative;
- text-decoration: none;
- word-wrap: break-word;
- }
- .board-list .board-list-item > .js-open-board {
- text-decoration: none;
- color: inherit;
- display: block;
- }
- .board-list .board-list-item.template-container {
- border: 4px solid #fff;
- }
- .board-list .board-list-item.tile {
- background-size: auto;
- background-repeat: repeat;
- }
- .board-list .board-list-item-sub-name {
- color: rgba(255,255,255,0.5);
- display: block;
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- }
- .board-list .board-list-item-desc {
- color: #fff;
- display: block;
- font-size: 14px;
- font-weight: 400;
- line-height: 18px;
- }
- .board-list .js-add-board {
- text-align: center;
- }
- .board-list .js-add-board .label {
- font-weight: normal;
- line-height: 56px;
- min-height: 100px;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #999; /* Darker background for better text contrast */
- border-radius: 3px;
- padding: 36px 8px 32px 8px;
- }
- .board-list .js-add-board .label:hover {
- background-color: #808080; /* Even darker on hover */
- }
- .board-list .is-star-active,
- .board-list .is-not-star-active {
- top: 0;
- font-size: 14px;
- height: 18px;
- line-height: 18px;
- opacity: 0;
- padding: 9px 9px;
- position: absolute;
- right: 0;
- transition-duration: 0.15s;
- transition-property: color, font-size, background;
- }
- .board-list .fa-circle {
- bottom: 0;
- font-size: 10px;
- height: 10px;
- line-height: 10px;
- padding: 9px 9px;
- position: absolute;
- right: 0;
- transition-duration: 0.15s;
- transition-property: color, font-size, background;
- }
- .board-list .has-overtime-card-active {
- color: #eb4646 !important;
- }
- .board-list .no-overtime-card-active {
- color: #3cb500 !important;
- }
- .board-list .is-star-active {
- color: #fff;
- }
- .board-list .fa-clone {
- position: absolute;
- bottom: 0;
- font-size: 14px;
- height: 18px;
- line-height: 18px;
- opacity: 0;
- right: 0;
- padding: 9px 9px;
- transition-duration: 0.15s;
- transition-property: color, font-size, background;
- }
- .board-list .fa-archive {
- position: absolute;
- bottom: 0;
- font-size: 14px;
- height: 18px;
- line-height: 18px;
- opacity: 0;
- left: 0;
- padding: 9px 9px;
- transition-duration: 0.15s;
- transition-property: color, font-size, background;
- }
- .board-list li:hover a:hover .is-star-active,
- .board-list li:hover a:hover .fa-clone,
- .board-list li:hover a:hover .fa-archive,
- .board-list li:hover a:hover .is-not-star-active {
- color: #fff;
- }
- .board-list li:hover a .is-star-active,
- .board-list li:hover a .fa-clone,
- .board-list li:hover a .fa-archive,
- .board-list li:hover a .is-not-star-active {
- color: #fff;
- opacity: 0.75;
- }
- .board-list li:hover a .is-star-active:hover,
- .board-list li:hover a .fa-clone:hover,
- .board-list li:hover a .fa-archive:hover,
- .board-list li:hover a .is-not-star-active:hover {
- font-size: 18px;
- opacity: 1;
- }
- .board-list li:hover a .is-star-active,
- .board-list li:hover a .fa-clone,
- .board-list li:hover a .fa-archive,
- .board-list li:hover a .is-not-star-active {
- opacity: 1;
- }
- /* Board drag handle - always visible and positioned at top */
- .board-list .board-handle {
- position: absolute;
- padding: 4px 6px;
- top: 4px;
- left: 50%;
- transform: translateX(-50%);
- font-size: 14px;
- color: #fff;
- background: rgba(0,0,0,0.4);
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- transition: background-color 0.2s ease;
- cursor: grab;
- opacity: 1;
- user-select: none;
- }
- .board-list .board-handle:active {
- cursor: grabbing;
- }
- .board-list .board-handle:hover {
- background: rgba(255, 255, 0, 0.8) !important;
- color: #000;
- }
- /* Multiselection checkbox on board items */
- .board-list .board-list-item .multi-selection-checkbox {
- position: absolute !important;
- bottom: 4px !important;
- left: 4px !important;
- top: auto !important;
- width: 24px;
- height: 24px;
- border: 3px solid #fff;
- background: rgba(0,0,0,0.5);
- border-radius: 4px;
- cursor: pointer;
- z-index: 11;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 0.2s;
- box-shadow: 0 2px 4px rgba(0,0,0,0.3);
- transform: none !important;
- margin: 0 !important;
- }
- .board-list .board-list-item .multi-selection-checkbox:hover {
- background: rgba(0,0,0,0.7);
- transform: scale(1.15) !important;
- box-shadow: 0 3px 6px rgba(0,0,0,0.5);
- }
- .board-list .board-list-item .multi-selection-checkbox.is-checked {
- background: #2196F3;
- border-color: #2196F3;
- box-shadow: 0 2px 8px rgba(33, 150, 243, 0.6);
- width: 24px !important;
- height: 24px !important;
- top: auto !important;
- left: 4px !important;
- transform: none !important;
- border-radius: 4px !important;
- }
- .board-list .board-list-item .multi-selection-checkbox.is-checked::after {
- content: '✓';
- color: #fff;
- font-size: 16px;
- font-weight: bold;
- }
- .board-list.is-multiselection-active .js-board.is-checked {
- outline: 4px solid #2196F3;
- outline-offset: -4px;
- box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
- }
- /* Visual hint when multiselection is active */
- .board-list.is-multiselection-active .board-list-item {
- border: 2px dashed rgba(33, 150, 243, 0.3);
- }
- .board-backgrounds-list .board-background-select {
- box-sizing: border-box;
- display: block;
- float: left;
- width: 50%;
- padding-top: 12px;
- position: relative;
- z-index: 1;
- }
- .board-backgrounds-list .board-background-select:nth-child(-n + 2) {
- padding-top: 0;
- }
- .board-backgrounds-list .board-background-select:nth-child(2n) {
- padding-left: 6px;
- }
- .board-backgrounds-list .board-background-select:nth-child(2n+1) {
- padding-right: 6px;
- }
- .board-backgrounds-list .board-background-select .background-box {
- color: #fff;
- border-radius: 3px;
- background-size: cover;
- display: block;
- height: 74px;
- position: relative;
- width: 100%;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .board-backgrounds-list .board-background-select .background-box i.fa-check {
- font-size: 25px;
- color: #fff;
- }
- /* Mobile view styles - applied when isMiniScreen is true (iPhone, etc.) */
- .board-list.mobile-view {
- height: calc(100vh - 120px);
- overflow-y: scroll !important;
- overflow-x: hidden;
- padding: 0 1rem;
- margin: 0;
- scrollbar-width: auto !important;
- scrollbar-color: #888 #f1f1f1;
- }
- .board-list.mobile-view li {
- width: 100%;
- float: none;
- display: block;
- margin-bottom: 1rem;
- padding-right: 50px; /* Space for drag handle */
- }
- .board-list.mobile-view .board-list-item {
- overflow: visible;
- height: 8rem;
- width: 100%;
- margin: 0;
- padding-right: 50px; /* Ensure content doesn't overlap with drag handle */
- }
- .board-list.mobile-view .board-list-item .details {
- padding-right: 50px; /* Extra space for drag handle */
- width: 100%;
- box-sizing: border-box;
- }
- .board-list.mobile-view .board-list-item-sub-name {
- position: relative;
- top: -100px;
- left: -100px;
- }
- .board-list.mobile-view .board-handle {
- position: absolute;
- padding: 7px;
- top: 50%;
- transform: translateY(-50%);
- right: 10px;
- font-size: 24px;
- color: #fff;
- background: rgba(0,0,0,0.3);
- border-radius: 50%;
- width: 40px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- transition: background-color 0.2s ease;
- }
- .board-list.mobile-view .board-handle:hover {
- background: rgba(255, 255, 0, 0.8) !important; /* Yellow hover */
- }
- /* Force scrollbar to be visible on mobile view */
- .board-list.mobile-view::-webkit-scrollbar {
- width: 12px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list.mobile-view::-webkit-scrollbar-track {
- background: #f1f1f1 !important;
- border-radius: 6px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list.mobile-view::-webkit-scrollbar-thumb {
- background: #888 !important;
- border-radius: 6px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list.mobile-view::-webkit-scrollbar-thumb:hover {
- background: #555 !important;
- }
- /* Force mobile view to have scrollable content */
- .board-list.mobile-view {
- min-height: 100vh; /* Force content to be tall enough to scroll */
- }
- /* Hide archive and clone board buttons in mobile view */
- .board-list.mobile-view .js-archive-board,
- .board-list.mobile-view .js-clone-board {
- display: none !important;
- }
- /* Change board drag handle to up-down arrow in mobile view */
- .board-list.mobile-view .board-handle.fa-arrows::before {
- content: "↕️" !important;
- font-family: inherit !important;
- }
- .board-list.mobile-view::after {
- content: '';
- display: block;
- height: 100px;
- }
- @media screen and (max-width: 800px),
- screen and (max-device-width: 800px),
- screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 800px),
- screen and (max-width: 800px) and (orientation: portrait),
- screen and (max-width: 800px) and (orientation: landscape),
- screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 3) {
- .board-list {
- height: 100%;
- overflow-y: auto;
- overflow-x: hidden;
- padding: 0 1rem;
- margin: 0;
- }
- .board-list li {
- width: 100%;
- float: none;
- display: block;
- margin-bottom: 1rem;
- padding-right: 50px; /* Space for drag handle */
- }
- .board-list .board-list-item {
- overflow: visible;
- height: 8rem;
- width: 100%;
- margin: 0;
- padding-right: 50px; /* Ensure content doesn't overlap with drag handle */
- }
- .board-list .board-list-item .details {
- padding-right: 50px; /* Extra space for drag handle */
- width: 100%;
- box-sizing: border-box;
- }
- .board-list .board-list-item-sub-name {
- position: relative;
- top: -100px;
- left: -100px;
- }
- .board-list .board-handle {
- position: absolute;
- padding: 7px;
- top: 50%;
- transform: translateY(-50%);
- right: 10px;
- font-size: 24px;
- color: #fff;
- background: rgba(0,0,0,0.3);
- border-radius: 50%;
- width: 40px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- transition: background-color 0.2s ease;
- }
- .board-list .board-handle:hover {
- background: rgba(255, 255, 0, 0.8) !important; /* Yellow hover */
- }
- }
- /* Very small screens - ensure one board per row */
- @media screen and (max-width: 360px) {
- .board-list li {
- width: 100% !important;
- float: none !important;
- display: block !important;
- }
- .board-list .board-handle {
- position: absolute;
- padding: 7px;
- top: 50%;
- transform: translateY(-50%);
- right: 10px;
- font-size: 24px;
- color: #fff;
- background: rgba(0,0,0,0.3);
- border-radius: 50%;
- width: 40px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- /* Mobile - make all text and icons 2x bigger above #content on All Boards page */
- @media screen and (max-width: 800px),
- screen and (max-device-width: 800px),
- screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 800px),
- screen and (max-width: 800px) and (orientation: portrait),
- screen and (max-width: 800px) and (orientation: landscape),
- screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 3) {
- .wrapper {
- font-size: 2em !important; /* 2x bigger base font size for All Boards page */
- }
- .wrapper * {
- font-size: inherit !important; /* Inherit the 2x scaling */
- }
- .wrapper .fa, .wrapper .icon {
- font-size: 2em !important; /* 2x bigger icons */
- }
- .board-list-header {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list-header h1 {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .AllBoardTeamsOrgs {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .AllBoardTeamsOrgs select {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .AllBoardTeamsOrgs input {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .AllBoardTeamsOrgs .fa {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .board-list-item {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .board-list-item-name {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .board-list-item-desc {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .minicard-members {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .minicard-lists {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .fa {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .board-list .board-handle {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- }
- /* Fallback for iPhone devices using JavaScript detection - All Boards page */
- .iphone-device .wrapper {
- font-size: 2em !important; /* 2x bigger base font size for All Boards page */
- }
- .iphone-device .wrapper * {
- font-size: inherit !important; /* Inherit the 2x scaling */
- }
- .iphone-device .wrapper .fa, .iphone-device .wrapper .icon {
- font-size: 2em !important; /* 2x bigger icons */
- }
- .iphone-device .board-list-header {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list-header h1 {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .AllBoardTeamsOrgs {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .AllBoardTeamsOrgs select {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .AllBoardTeamsOrgs input {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .AllBoardTeamsOrgs .fa {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .board-list-item {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .board-list-item-name {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .board-list-item-desc {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .minicard-members {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .minicard-lists {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .fa {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- .iphone-device .board-list .board-handle {
- font-size: 1em !important; /* Use inherited 2x scaling */
- }
- /* iPhone 12 Mini and very small screens - make everything much larger */
- @media screen and (max-width: 400px) and (max-height: 900px) {
- .board-list {
- height: calc(100vh - 120px) !important;
- overflow-y: scroll !important;
- overflow-x: hidden !important;
- -webkit-overflow-scrolling: touch;
- padding: 0 0.5rem;
- }
- .board-list li {
- width: 100% !important;
- float: none !important;
- display: block !important;
- margin-bottom: 1.5rem !important;
- }
- .board-list .board-list-item {
- height: 12rem !important; /* Much taller */
- width: 100% !important;
- margin: 0 !important;
- padding: 1rem !important; /* More padding */
- font-size: 18px !important; /* Much larger text */
- line-height: 1.4 !important;
- }
- .board-list .board-list-item .board-list-item-name {
- font-size: 20px !important; /* Larger board names */
- font-weight: bold !important;
- margin-bottom: 0.5rem !important;
- }
- .board-list .board-list-item .board-list-item-desc {
- font-size: 16px !important; /* Larger descriptions */
- line-height: 1.3 !important;
- }
- .board-list .board-list-item .minicard-members {
- font-size: 14px !important; /* Larger member avatars */
- }
- .board-list .board-list-item .minicard-lists {
- font-size: 14px !important; /* Larger list counters */
- }
- .board-list .board-handle {
- position: absolute;
- padding: 10px !important;
- top: 50%;
- transform: translateY(-50%);
- right: 15px !important;
- font-size: 28px !important; /* Much larger drag handle */
- color: #fff;
- background: rgba(0,0,0,0.4) !important;
- border-radius: 50%;
- width: 50px !important; /* Larger handle */
- height: 50px !important;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- transition: background-color 0.2s ease;
- }
- .board-list .board-handle:hover {
- background: rgba(255, 255, 0, 0.8) !important; /* Yellow hover */
- }
- /* Force scrollbar to be visible and larger */
- .board-list::-webkit-scrollbar {
- width: 16px !important; /* Much wider scrollbar */
- display: block !important;
- visibility: visible !important;
- }
- .board-list::-webkit-scrollbar-track {
- background: #f1f1f1 !important;
- border-radius: 8px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list::-webkit-scrollbar-thumb {
- background: #666 !important; /* Darker for better visibility */
- border-radius: 8px !important;
- display: block !important;
- visibility: visible !important;
- min-height: 50px !important; /* Minimum thumb size */
- }
- .board-list::-webkit-scrollbar-thumb:hover {
- background: #333 !important;
- }
- /* Ensure scrollbar is always visible */
- .board-list {
- scrollbar-gutter: stable;
- scrollbar-width: auto !important;
- min-height: 100vh !important;
- }
- .board-list::after {
- content: '';
- display: block;
- height: 200px !important; /* More space to ensure scrolling */
- }
- }
- .AllBoardTeamsOrgs {
- list-style-type: none;
- overflow: hidden;
- }
- .AllBoardTeams,
- .AllBoardOrgs,
- .AllBoardBtns {
- float: left;
- }
- .js-AllBoardOrgs {
- margin-left: 16px;
- }
- .AllBoardTeams {
- margin-left: 16px;
- }
- .AllBoardButtonsContainer {
- margin: 16px;
- }
- #filterBtn,
- #resetBtn {
- display: inline;
- }
- #resetBtn.filter-reset-btn {
- background: #f44336;
- color: #000;
- border: none;
- border-radius: 4px;
- padding: 6px 12px;
- cursor: pointer;
- font-size: 14px;
- display: inline-flex;
- align-items: center;
- gap: 6px;
- transition: background 0.2s;
- }
- #resetBtn.filter-reset-btn:hover {
- background: #d32f2f;
- }
- #resetBtn.filter-reset-btn .reset-icon {
- font-size: 14px;
- }
- .js-board {
- display: block;
- background-color: #999; /* Default gray background if no color class is applied */
- border-radius: 3px; /* Rounded corners for board items */
- overflow: hidden; /* Ensure children respect rounded corners */
- margin: 8px; /* Space between board items */
- }
- /* Reset background for add-board button */
- .js-add-board {
- background-color: transparent !important;
- margin: 8px !important; /* Keep margin for add-board */
- }
- /* Apply board colors to li.js-board parent instead of just the link */
- .board-list .board-color-nephritis { background-color: #27ae60; }
- .board-list .board-color-pomegranate { background-color: #c0392b; }
- .board-list .board-color-belize { background-color: #2980b9; }
- .board-list .board-color-wisteria { background-color: #8e44ad; }
- .board-list .board-color-midnight { background-color: #2c3e50; }
- .board-list .board-color-pumpkin { background-color: #e67e22; }
- .board-list .board-color-moderatepink { background-color: #cd5a91; }
- .board-list .board-color-strongcyan { background-color: #00aecc; }
- .board-list .board-color-limegreen { background-color: #4bbf6b; }
- .board-list .board-color-dark { background-color: #2c3e51; }
- .board-list .board-color-relax { background-color: #27ae61; }
- .board-list .board-color-corteza { background-color: #568ba2; }
- .board-list .board-color-clearblue { background-color: #3498db; }
- .board-list .board-color-natural { background-color: #596557; }
- .board-list .board-color-modern { background-color: #2a80b8; }
- .board-list .board-color-moderndark { background-color: #2a2a2a; }
- .board-list .board-color-exodark { background-color: #222; }
- .minicard-members {
- padding: 6px 0 6px 8px;
- width: 100%;
- margin-bottom: 2px;
- margin-left: -4px;
- display: inline-block;
- }
- .minicard-lists {
- margin: 0 auto;
- max-width: 95%;
- height: 100%;
- }
- .flex {
- display: flex;
- }
- .flex-wrap {
- flex-wrap: wrap;
- }
- .flex-wrap .item {
- margin: 2px;
- padding-right: 6px;
- text-align: center;
- }
- /* Fix multiple scrollbars issue on mobile */
- @media screen and (max-width: 800px),
- screen and (max-device-width: 800px),
- screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 800px),
- screen and (max-width: 800px) and (orientation: portrait),
- screen and (max-width: 800px) and (orientation: landscape),
- screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 3) {
- .wrapper {
- overflow: hidden;
- height: 100vh;
- }
- .board-list {
- overflow-y: scroll !important;
- overflow-x: hidden !important;
- -webkit-overflow-scrolling: touch;
- scrollbar-width: thin;
- scrollbar-color: #888 #f1f1f1;
- height: calc(100vh - 120px); /* Ensure there's content to scroll */
- }
- /* Force scrollbar to always be visible */
- .board-list::-webkit-scrollbar {
- width: 12px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list::-webkit-scrollbar-track {
- background: #f1f1f1 !important;
- border-radius: 6px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list::-webkit-scrollbar-thumb {
- background: #888 !important;
- border-radius: 6px !important;
- display: block !important;
- visibility: visible !important;
- }
- .board-list::-webkit-scrollbar-thumb:hover {
- background: #555 !important;
- }
- /* Ensure scrollbar is always visible */
- .board-list::-webkit-scrollbar-corner {
- background: #f1f1f1 !important;
- }
- /* Force scrollbar to be visible */
- .board-list {
- scrollbar-gutter: stable;
- scrollbar-width: auto !important;
- min-height: 100vh; /* Force content to be tall enough to scroll */
- }
- /* Ensure there's always content to scroll */
- .board-list::after {
- content: '';
- display: block;
- height: 100px;
- }
- /* Ensure only one scrollbar is visible */
- body {
- overflow: hidden;
- }
- #content {
- overflow: hidden;
- }
- /* Hide archive and clone board buttons in mobile view */
- .board-list .js-archive-board,
- .board-list .js-clone-board {
- display: none !important;
- }
- /* Change board drag handle to up-down arrow in mobile view */
- .board-list .board-handle.fa-arrows::before {
- content: "↕️" !important;
- font-family: inherit !important;
- }
- }
|