Last modified by Veronika Kocher on Friday, 18 Sep 2026 16:47

From version 41.1
edited by Veronika Kocher
on Thursday, 03 Sep 2026 15:57
Change comment: There is no comment for this version
To version 41.2
edited by Veronika Kocher
on Friday, 04 Sep 2026 9:18
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -435,9 +435,9 @@
435 435  )))
436 436  )))
437 437  
438 -(% style="padding:0 16px 16px 16px;" %)
438 +(% class="arsn-phase-cta-wrap" style="padding:0 16px 16px 16px;" %)
439 439  (((
440 -[[Explore Enable>>https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/||class="btn btn-primary btn-block"]]
440 +[[Explore Enable>>https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Enable/||class="btn btn-primary btn-block arsn-phase-cta"]]
441 441  )))
442 442  )))
443 443  )))
... ... @@ -501,9 +501,9 @@
501 501  )))
502 502  )))
503 503  
504 -(% style="padding:0 16px 16px 16px;" %)
504 +(% class="arsn-phase-cta-wrap" style="padding:0 16px 16px 16px;" %)
505 505  (((
506 -[[Explore Work & Manage>>https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Work%20%26%20Manage/||class="btn btn-primary btn-block"]]
506 +[[Explore Work & Manage>>https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Work%20%26%20Manage/||class="btn btn-primary btn-block arsn-phase-cta"]]
507 507  )))
508 508  )))
509 509  )))
... ... @@ -577,9 +577,9 @@
577 577  )))
578 578  )))
579 579  
580 -(% style="padding:0 16px 16px 16px;" %)
580 +(% class="arsn-phase-cta-wrap" style="padding:0 16px 16px 16px;" %)
581 581  (((
582 -[[Explore Publish & Share>>https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Publish%20%26%20Share/||class="btn btn-primary btn-block"]]
582 +[[Explore Publish & Share>>https://xwiki.uni-ak.ac.at/bin/view/Service%20Navigator/Art%20%26%20Research%20Services%20Navigator/Publish%20%26%20Share/||class="btn btn-primary btn-block arsn-phase-cta"]]
583 583  )))
584 584  )))
585 585  )))
... ... @@ -1564,6 +1564,15 @@
1564 1564   Array.from(
1565 1565   row.card.querySelectorAll("a")
1566 1566   ).forEach(function(link){
1567 + if(
1568 + link.classList &&
1569 + link.classList.contains(
1570 + "arsn-phase-cta"
1571 + )
1572 + ){
1573 + return;
1574 + }
1575 +
1567 1567   if(!visible(link))return;
1568 1568  
1569 1569   var rect=
... ... @@ -2036,3 +2036,72 @@
2036 2036  <!-- SN_SERVICE_NAVIGATOR_MASTER_STYLE_END -->
2037 2037  {{/html}}
2038 2038  
2048 +{{html clean="false"}}
2049 +<!-- ARSN_PHASE_CTA_MOBILE_EDGE_FIX_V3_START -->
2050 +<style data-arsn-phase-cta-mobile-edge-fix="3">
2051 +@media (max-width:767px){
2052 +
2053 + /* Remove the white side gutters around the three phase CTAs. */
2054 + #xwikicontent .arsn-phase-cta-wrap{
2055 + box-sizing:border-box!important;
2056 + width:calc(100% + 2px)!important;
2057 + max-width:none!important;
2058 + margin:14px -1px -1px -1px!important;
2059 + padding:0!important;
2060 + border:0!important;
2061 + border-left:0!important;
2062 + box-shadow:none!important;
2063 + background:transparent!important;
2064 + }
2065 +
2066 + /* Full-width orange CTA; no extra border/shadow. */
2067 + #xwikicontent a.arsn-phase-cta{
2068 + display:flex!important;
2069 + align-items:center!important;
2070 + justify-content:center!important;
2071 + gap:8px!important;
2072 +
2073 + box-sizing:border-box!important;
2074 + width:100%!important;
2075 + max-width:none!important;
2076 + min-width:0!important;
2077 +
2078 + margin:0!important;
2079 + padding:12px 14px!important;
2080 +
2081 + border:0!important;
2082 + border-left:0!important;
2083 + border-right:0!important;
2084 + border-top:0!important;
2085 + border-bottom:0!important;
2086 + box-shadow:none!important;
2087 +
2088 + border-radius:8px!important;
2089 +
2090 + text-align:center!important;
2091 + text-align-last:center!important;
2092 + text-justify:auto!important;
2093 + word-spacing:normal!important;
2094 + white-space:normal!important;
2095 + }
2096 +
2097 + /* Keep an XWiki external-link icon on the same line/flex row. */
2098 + #xwikicontent a.arsn-phase-cta::after{
2099 + flex:0 0 auto!important;
2100 + margin-left:2px!important;
2101 + }
2102 +
2103 + #xwikicontent a.arsn-phase-cta > .fa,
2104 + #xwikicontent a.arsn-phase-cta > .icon,
2105 + #xwikicontent a.arsn-phase-cta > .external-link-icon,
2106 + #xwikicontent a.arsn-phase-cta > [class*="external"]{
2107 + position:static!important;
2108 + display:inline-block!important;
2109 + flex:0 0 auto!important;
2110 + margin:0!important;
2111 + }
2112 +}
2113 +</style>
2114 +<!-- ARSN_PHASE_CTA_MOBILE_EDGE_FIX_V3_END -->
2115 +{{/html}}
2116 +