Changes for page Tidy-Lab Cloud Platform
Last modified by Humphrey AI on 2026/03/22 10:27
From version 40.1
edited by Humphrey AI
on 2026/03/19 20:25
on 2026/03/19 20:25
Change comment:
There is no comment for this version
To version 30.1
edited by Humphrey AI
on 2026/03/19 15:58
on 2026/03/19 15:58
Change comment:
There is no comment for this version
Summary
-
Objects (2 modified, 0 added, 1 removed)
Details
- XWiki.JavaScriptExtension[0]
-
- code
-
... ... @@ -4,20 +4,68 @@ 4 4 var hero = document.querySelector('.tl-hero'); 5 5 if (!hero) return; 6 6 7 - // Simple scroll check: toggle tl-scrolled when past the hero 7 + // Collect all chrome elements to fade 8 + var chromeSelectors = [ 9 + '#menuview', '#headerglobal', '#hierarchy_breadcrumb', 10 + '.document-header', '#xdocFooter', '#xwikidata', 11 + '#footerglobal', '.skip-nav' 12 + ]; 13 + var chromeElements = []; 14 + chromeSelectors.forEach(function(sel) { 15 + var el = document.querySelector(sel); 16 + if (el) chromeElements.push(el); 17 + }); 18 + 19 + var wasFading = false; 20 + 8 8 function onScroll() { 9 9 var heroHeight = hero.offsetHeight; 10 10 var scrollY = window.pageYOffset || document.documentElement.scrollTop; 11 11 12 - if (scrollY >= heroHeight * 0.7) { 25 + // Start fading at 30% scroll, fully visible at 70% 26 + var fadeStart = heroHeight * 0.3; 27 + var fadeEnd = heroHeight * 0.7; 28 + var progress = 0; 29 + 30 + if (scrollY <= fadeStart) { 31 + progress = 0; 32 + } else if (scrollY >= fadeEnd) { 33 + progress = 1; 34 + } else { 35 + progress = (scrollY - fadeStart) / (fadeEnd - fadeStart); 36 + } 37 + 38 + if (progress > 0 && progress < 1) { 39 + // Fading: switch from display:none to opacity-based 40 + if (!wasFading) { 41 + document.body.classList.add('tl-fading'); 42 + document.body.classList.remove('tl-scrolled'); 43 + wasFading = true; 44 + } 45 + chromeElements.forEach(function(el) { 46 + el.style.opacity = progress; 47 + }); 48 + } else if (progress >= 1) { 49 + // Fully scrolled: restore normal layout 50 + document.body.classList.remove('tl-fading'); 13 13 document.body.classList.add('tl-scrolled'); 52 + chromeElements.forEach(function(el) { 53 + el.style.opacity = ''; 54 + }); 55 + wasFading = false; 14 14 } else { 57 + // At top: hide everything 58 + document.body.classList.remove('tl-fading'); 15 15 document.body.classList.remove('tl-scrolled'); 60 + chromeElements.forEach(function(el) { 61 + el.style.opacity = ''; 62 + }); 63 + wasFading = false; 16 16 } 17 17 } 18 18 19 19 window.addEventListener('scroll', onScroll, { passive: true }); 20 - onScroll(); 68 + onScroll(); // run once on load 21 21 22 22 // Smooth scroll for the arrow 23 23 var scrollLink = document.querySelector('.tl-hero-scroll'); ... ... @@ -30,17 +30,4 @@ 30 30 } 31 31 }); 32 32 } 33 - 34 - // Scroll-reveal observer for below-the-fold content 35 - var revealObserver = new IntersectionObserver(function(entries) { 36 - entries.forEach(function(entry) { 37 - if (entry.isIntersecting) { 38 - entry.target.classList.add('tl-visible'); 39 - } 40 - }); 41 - }, { threshold: 0.08, rootMargin: '0px 0px -40px 0px' }); 42 - 43 - document.querySelectorAll('.tl-reveal').forEach(function(el) { 44 - revealObserver.observe(el); 45 - }); 46 46 })();
- XWiki.StyleSheetExtension[0]
-
- code
-
... ... @@ -3,69 +3,12 @@ 3 3 Targets exact XWiki 18.1 Flamingo DOM element IDs. 4 4 ========================================================================== */ 5 5 6 - /* --- Design Tokens (from concept-b) --- */ 7 - :root { 8 - --hero-purple: #2D2B55; 9 - --indigo: #4F46E5; 10 - --indigo-light: #EEF2FF; 11 - --indigo-dark: #1e1b4b; 12 - --purple: #7C3AED; 13 - --green: #10B981; 14 - --green-light: #ECFDF5; 15 - --text-dark: #111827; 16 - --text-body: #4B5563; 17 - --text-muted: #9CA3AF; 18 - --border: #E5E7EB; 19 - --bg-light: #f8f9fc; 20 - --bg-section: #f0f1f8; 21 - } 22 - 23 23 /* ========================================================================== 24 - NAV —always visible,fixed, blendswith hero7 + Phase 1: HERO VISIBLE — hide chrome, full-bleed layout 25 25 ========================================================================== */ 26 26 27 - /* Hide hamburger drawer button — empty menu, not needed */ 28 - .tl-hero-page #tmDrawerActivator { 29 - display: none !important; 30 - } 31 - 32 - /* Nav is always fixed at top */ 33 - .tl-hero-page #menuview { 34 - position: fixed !important; 35 - top: 0; 36 - left: 0; 37 - width: 100%; 38 - z-index: 1030; 39 - overflow: hidden; 40 - transition: background-color 0.3s ease, box-shadow 0.3s ease; 41 - } 42 - 43 - /* On the hero: match hero purple exactly (#2D2B55, not theme default #1e1b4b) */ 10 + /* Chrome elements: hidden initially with display:none (no space taken) */ 44 44 .tl-hero-page:not(.tl-scrolled) #menuview, 45 - .tl-hero-page:not(.tl-scrolled) #menuview .navbar-default { 46 - background-color: #2D2B55 !important; 47 - background-image: none !important; 48 - border-color: transparent !important; 49 - box-shadow: none !important; 50 - } 51 - 52 - /* After scrolling past hero: same purple with shadow */ 53 - .tl-hero-page.tl-scrolled #menuview, 54 - .tl-hero-page.tl-scrolled #menuview .navbar-default { 55 - background-color: #2D2B55 !important; 56 - background-image: none !important; 57 - border-color: transparent !important; 58 - box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important; 59 - } 60 - 61 - /* Search button: match hero purple instead of theme default #1e1b4b */ 62 -.tl-hero-page #menuview .btn[aria-controls="headerglobalsearchinput"], 63 -.tl-hero-page #menuview .navbar-default .btn[title="Search"] { 64 - background-color: var(--hero-purple) !important; 65 - border-color: rgba(255, 255, 255, 0.15) !important; 66 -} 67 - 68 -/* Hide non-nav chrome on the hero (breadcrumbs, footer, etc.) */ 69 69 .tl-hero-page:not(.tl-scrolled) #headerglobal, 70 70 .tl-hero-page:not(.tl-scrolled) #hierarchy_breadcrumb, 71 71 .tl-hero-page:not(.tl-scrolled) .document-header, ... ... @@ -76,6 +76,33 @@ 76 76 display: none !important; 77 77 } 78 78 22 + /* When fading in (JS adds tl-fading), switch to opacity-based visibility */ 23 + .tl-hero-page.tl-fading #menuview, 24 + .tl-hero-page.tl-fading #headerglobal, 25 + .tl-hero-page.tl-fading #hierarchy_breadcrumb, 26 + .tl-hero-page.tl-fading .document-header, 27 + .tl-hero-page.tl-fading #xdocFooter, 28 + .tl-hero-page.tl-fading #xwikidata, 29 + .tl-hero-page.tl-fading #footerglobal, 30 + .tl-hero-page.tl-fading .skip-nav { 31 + display: block !important; 32 + } 33 + 34 + .tl-hero-page.tl-fading .document-header { 35 + display: flex !important; 36 + } 37 + 38 + /* Sticky navbar once visible */ 39 + .tl-hero-page.tl-fading #menuview, 40 + .tl-hero-page.tl-scrolled #menuview { 41 + position: fixed !important; 42 + top: 0; 43 + left: 0; 44 + width: 100%; 45 + z-index: 1030; 46 + overflow: hidden; 47 + } 48 + 79 79 /* Prevent any horizontal overflow */ 80 80 html, body.tl-hero-page, 81 81 .tl-hero-page #xwikimaincontainer, ... ... @@ -125,7 +125,7 @@ 125 125 /* --- Top half: dark purple --- */ 126 126 .tl-hero-top { 127 127 flex: 1; 128 - background-color: var(--hero-purple);98 + background-color: #2D2B55; 129 129 display: flex; 130 130 flex-direction: column; 131 131 justify-content: flex-end; ... ... @@ -135,29 +135,6 @@ 135 135 overflow: visible; 136 136 } 137 137 138 - /* Subtle radial glow behind title */ 139 - .tl-hero-top::before { 140 - content: ''; 141 - position: absolute; 142 - bottom: -60px; 143 - left: 50%; 144 - transform: translateX(-50%); 145 - width: 700px; 146 - height: 350px; 147 - background: radial-gradient(ellipse, rgba(79,70,229,0.2) 0%, transparent 70%); 148 - pointer-events: none; 149 - } 150 - 151 - /* Faint dot pattern for texture */ 152 - .tl-hero-top::after { 153 - content: ''; 154 - position: absolute; 155 - inset: 0; 156 - background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px); 157 - background-size: 24px 24px; 158 - pointer-events: none; 159 - } 160 - 161 161 /* --- Bottom half: white --- */ 162 162 .tl-hero-bottom { 163 163 flex: 1; ... ... @@ -187,8 +187,6 @@ 187 187 .tl-hero-center { 188 188 text-align: center; 189 189 padding: 0 20px; 190 - position: relative; 191 - z-index: 1; 192 192 } 193 193 194 194 .tl-hero-title { ... ... @@ -221,6 +221,7 @@ 221 221 color: rgba(123, 120, 255, 0.6); 222 222 font-size: 24px; 223 223 text-decoration: none; 169 + animation: tl-bounce 2s ease infinite; 224 224 z-index: 2; 225 225 } 226 226 ... ... @@ -229,6 +229,12 @@ 229 229 text-decoration: none; 230 230 } 231 231 178 + @keyframes tl-bounce { 179 + 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 180 + 40% { transform: translateX(-50%) translateY(-12px); } 181 + 60% { transform: translateX(-50%) translateY(-6px); } 182 + } 183 + 232 232 /* ========================================================================== 233 233 Content area below hero — restore normal layout 234 234 ========================================================================== */ ... ... @@ -251,58 +251,6 @@ 251 251 } 252 252 253 253 /* ========================================================================== 254 - Animations (from concept-b) 255 - ========================================================================== */ 256 - @keyframes tl-fadeIn { 257 - from { opacity: 0; } 258 - to { opacity: 1; } 259 - } 260 - 261 - @keyframes tl-fadeUp { 262 - from { opacity: 0; transform: translateY(24px); } 263 - to { opacity: 1; transform: translateY(0); } 264 - } 265 - 266 - @keyframes tl-bounce { 267 - 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 268 - 40% { transform: translateX(-50%) translateY(-12px); } 269 - 60% { transform: translateX(-50%) translateY(-6px); } 270 - } 271 - 272 - /* Scroll-reveal for below-the-fold content */ 273 - .tl-reveal { 274 - opacity: 0; 275 - transform: translateY(28px); 276 - transition: opacity 0.7s ease-out, transform 0.7s ease-out; 277 - } 278 - 279 - .tl-reveal.tl-visible { 280 - opacity: 1; 281 - transform: translateY(0); 282 - } 283 - 284 - /* Hero elements fade in on load */ 285 - .tl-hero-title { 286 - opacity: 0; 287 - animation: tl-fadeIn 0.6s ease-out 0.1s forwards; 288 - } 289 - 290 - .tl-hero-tagline { 291 - opacity: 0; 292 - animation: tl-fadeIn 0.5s ease-out 0.3s forwards; 293 - } 294 - 295 - .tl-partner-btn-wrap { 296 - opacity: 0; 297 - animation: tl-fadeUp 0.5s ease-out 0.5s forwards; 298 - } 299 - 300 - .tl-hero-scroll { 301 - opacity: 0; 302 - animation: tl-fadeIn 0.4s ease-out 0.7s forwards, tl-bounce 2s ease 1.1s infinite; 303 - } 304 - 305 - /* ========================================================================== 306 306 Responsive 307 307 ========================================================================== */ 308 308 @media (max-width: 992px) { ... ... @@ -312,7 +312,6 @@ 312 312 .tl-hero-logo-bar { top: 20px; left: 20px; } 313 313 .tl-hero-top { padding-bottom: 24px; } 314 314 .tl-hero-bottom { padding-top: 16px; } 315 - .tl-hero-top::before { width: 500px; height: 250px; } 316 316 } 317 317 318 318 @media (max-width: 576px) { ... ... @@ -323,12 +323,17 @@ 323 323 .tl-hero-scroll { bottom: 15px; } 324 324 .tl-hero-top { padding-bottom: 20px; } 325 325 .tl-hero-bottom { padding-top: 12px; } 326 - .tl-hero-top::before { width: 300px; height: 150px; } 327 327 } 328 328 329 329 /* --- Print: skip hero --- */ 330 330 @media print { 331 331 .tl-hero { display: none; } 230 + .tl-hero-page #tmHeader, 231 + .tl-hero-page .navbar, 232 + .tl-hero-page #hierarchy { 233 + opacity: 1; 234 + pointer-events: auto; 235 + } 332 332 } 333 333 334 334 /* ========================================================================== ... ... @@ -335,7 +335,7 @@ 335 335 Partner Access Button 336 336 ========================================================================== */ 337 337 .tl-partner-btn-wrap { 338 - margin-top: 15vh;242 + margin-top: 28px; 339 339 text-align: center; 340 340 } 341 341 ... ... @@ -342,7 +342,7 @@ 342 342 .tl-partner-btn { 343 343 display: inline-block; 344 344 padding: 12px 40px; 345 - background-color: var(--hero-purple);249 + background-color: #2D2B55; 346 346 color: #FFFFFF !important; 347 347 font-family: "Calibri", "Segoe UI", sans-serif; 348 348 font-size: 15px; ... ... @@ -350,7 +350,7 @@ 350 350 letter-spacing: 3px; 351 351 text-transform: uppercase; 352 352 text-decoration: none !important; 353 - border: 2px solid var(--hero-purple);257 + border: 2px solid #2D2B55; 354 354 border-radius: 0; 355 355 transition: all 0.3s ease; 356 356 cursor: pointer; ... ... @@ -358,8 +358,8 @@ 358 358 359 359 .tl-partner-btn:hover { 360 360 background-color: transparent; 361 - color: var(--hero-purple)!important;362 - border-color: var(--hero-purple);265 + color: #2D2B55 !important; 266 + border-color: #2D2B55; 363 363 text-decoration: none !important; 364 364 } 365 365 ... ... @@ -370,6 +370,6 @@ 370 370 letter-spacing: 2px; 371 371 } 372 372 .tl-partner-btn-wrap { 373 - margin-top: 50px;277 + margin-top: 20px; 374 374 } 375 375 }
- XWiki.XWikiRights[1]
-
- allow
-
... ... @@ -1,1 +1,0 @@ 1 -Allow - groups
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.XWikiAllGroup - levels
-
... ... @@ -1,1 +1,0 @@ 1 -view