Changes for page VelocityMacros
Last modified by SuperNico Laub on 2025/09/18 17:55
From version 1.1
edited by superadmin
on 2025/05/22 17:44
on 2025/05/22 17:44
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-help-ui/16.10.8]
To version 2.1
edited by SuperNico Laub
on 2025/09/18 17:55
on 2025/09/18 17:55
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-help-ui/17.7.0]
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.super admin1 +xwiki:XWiki.supernico - Content
-
... ... @@ -1,7 +1,7 @@ 1 1 {{velocity output="false"}} 2 2 #set ($discard = $xwiki.ssx.use('Help.Code.VelocityMacros')) 3 3 #set ($discard = $xwiki.jsx.use('Help.Code.VelocityMacros')) 4 -#set ($doc extras=[])4 +#set ($displayDocExtra = false) 5 5 6 6 #macro (helpActionCard $data) 7 7 <div class="well">
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -26,6 +26,52 @@ 26 26 } 27 27 } 28 28 29 +.card-list { 30 + display: flex; 31 + flex-wrap: wrap; 32 + align-items: stretch; 33 + row-gap: 1em; 34 + column-gap: 1%; 35 + padding-left: 0; 36 +} 37 + 38 +li.card { 39 + list-style: none; 40 + flex-shrink: 1; 41 + width: 24%; 42 +} 43 + 44 +.three-cols > li.card { 45 + width: 32%; 46 +} 47 + 48 +.two-cols > li.card { 49 + width: 49%; 50 +} 51 + 52 +@media (max-width: @screen-lg-min) { 53 + li.card { 54 + width: 32%; 55 + } 56 +} 57 + 58 +@media (max-width: @screen-md-min) { 59 + .card-list > li.card { 60 + width: 49%; 61 + } 62 +} 63 + 64 +@media (max-width: @screen-sm-min) { 65 + .card-list > li.card { 66 + width: 100%; 67 + } 68 +} 69 + 70 +li.card > .well { 71 + height: 100%; 72 + margin-bottom: 0px; 73 +} 74 + 29 29 .video-modal .modal-body { 30 30 text-align: center; 31 31 }