Changes for page FirstDigital Products Home Page:
Last modified by Chris Workman on 2026/08/20 21:50
From version 37.1
edited by Aaron Blackburn
on 2026/07/22 20:43
on 2026/07/22 20:43
Change comment:
There is no comment for this version
To version 46.1
edited by Aaron Blackburn
on 2026/07/22 20:47
on 2026/07/22 20:47
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (1 modified, 2 added, 5 removed)
Details
- Page properties
-
- Content
-
... ... @@ -6,7 +6,6 @@ 6 6 <a href="TARGET_URL_FOR_WEBEX" class="menu-card-link"> 7 7 <div class="menu-card"> 8 8 <div class="menu-icon-container"> 9 - <!-- Ensure 'Webex-Symbol.jpg' is attached to this page --> 10 10 <img src="$xwiki.getURL('current','download','filepath=Webex-Symbol.jpg')" alt="Webex" class="menu-icon webex-logo" /> 11 11 </div> 12 12 <div class="menu-text"> ... ... @@ -20,7 +20,6 @@ 20 20 <a href="TARGET_URL_FOR_TEAMS" class="menu-card-link"> 21 21 <div class="menu-card"> 22 22 <div class="menu-icon-container"> 23 - <!-- Ensure 'MS teams.webp' is attached to this page --> 24 24 <img src="$xwiki.getURL('current','download','filepath=MS teams.webp')" alt="MS Teams" class="menu-icon teams-logo" /> 25 25 </div> 26 26 <div class="menu-text"> ... ... @@ -34,8 +34,7 @@ 34 34 <a href="TARGET_URL_FOR_SIP" class="menu-card-link"> 35 35 <div class="menu-card"> 36 36 <div class="menu-icon-container"> 37 - <!-- Ensure 'image_29.png' is attached to this page --> 38 - <img src="$xwiki.getURL('current','download','filepath=image_29.png')" alt="FirstDigital" class="menu-icon firstdigital-logo" /> 35 + <img src="$xwiki.getURL('current','download','filepath=FirstDigital-Logo.png')" alt="FirstDigital" class="menu-icon firstdigital-logo" /> 39 39 </div> 40 40 <div class="menu-text"> 41 41 <div class="menu-title"><strong>FirstDigital SIP trunk</strong></div> ... ... @@ -48,7 +48,6 @@ 48 48 <a href="TARGET_URL_FOR_SUPPORT" class="menu-card-link"> 49 49 <div class="menu-card"> 50 50 <div class="menu-icon-container icon-only-bg"> 51 - <!-- Support Icon (using a clean vector equivalent) --> 52 52 <svg class="menu-icon support-icon" viewBox="0 0 24 24" width="24" height="24" stroke="#0060FF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line></svg> 53 53 </div> 54 54 <div class="menu-text"> ... ... @@ -73,7 +73,6 @@ 73 73 </div> 74 74 75 75 <style> 76 - /* Container setup */ 77 77 .modern-menu-container { 78 78 max-width: 1000px; 79 79 margin: 0 auto; ... ... @@ -81,7 +81,6 @@ 81 81 box-sizing: border-box; 82 82 } 83 83 84 - /* CSS Grid Setup: 2 columns, equal width */ 85 85 .menu-grid { 86 86 display: grid; 87 87 grid-template-columns: repeat(2, 1fr); ... ... @@ -89,7 +89,6 @@ 89 89 width: 100%; 90 90 } 91 91 92 - /* General Reset for links */ 93 93 .menu-card-link { 94 94 text-decoration: none !important; 95 95 display: block; ... ... @@ -96,7 +96,6 @@ 96 96 height: 100%; 97 97 } 98 98 99 - /* Card Styling */ 100 100 .menu-card { 101 101 background: #ffffff; 102 102 border-radius: 12px; ... ... @@ -107,7 +107,7 @@ 107 107 transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; 108 108 border: 1px solid #eaeaea; 109 109 color: #333; 110 - height: 100%; /* Ensures cards in same row stretch to same height */102 + height: 100%; 111 111 box-sizing: border-box; 112 112 } 113 113 ... ... @@ -117,50 +117,43 @@ 117 117 border-color: #c1c1c1; 118 118 } 119 119 120 - /* Icon Container: Uniform circle for all icons */ 121 121 .menu-icon-container { 122 - flex: 0 0 56px; /* Fixed size for icon circle */113 + flex: 0 0 56px; 123 123 height: 56px; 124 - background-color: #f4f6f8; /* Light grey background from original support icon */115 + background-color: #f4f6f8; 125 125 border-radius: 50%; 126 126 display: flex; 127 127 align-items: center; 128 128 justify-content: center; 129 129 margin-right: 16px; 130 - overflow: hidden; /* Keeps logos within circle */121 + overflow: hidden; 131 131 border: 1px solid #e0e0e0; 132 132 } 133 133 134 - /* Specific Logo Scaling */ 135 135 .menu-icon { 136 136 object-fit: contain; 137 137 } 138 138 139 - /* Webex (Logo is wide, fits best at 85% width) */ 140 140 .webex-logo { 141 141 width: 85%; 142 142 height: auto; 143 143 } 144 144 145 - /* MS Teams (Icon is square, fits best at 75% width) */ 146 146 .teams-logo { 147 147 width: 75%; 148 148 height: auto; 149 149 } 150 150 151 - /* FirstDigital (Logo is wide, fits best at 90% width) */ 152 152 .firstdigital-logo { 153 153 width: 90%; 154 154 height: auto; 155 155 } 156 156 157 - /* Support Icon (SVG styling) */ 158 158 .support-icon { 159 159 width: 60%; 160 160 height: 60%; 161 161 } 162 162 163 - /* Text Area */ 164 164 .menu-text { 165 165 flex: 1; 166 166 display: flex; ... ... @@ -182,7 +182,6 @@ 182 182 font-weight: 400; 183 183 } 184 184 185 - /* Partner footer adjustments */ 186 186 .partner-footer { 187 187 margin-top: 40px; 188 188 padding-top: 20px; ... ... @@ -197,12 +197,12 @@ 197 197 .footer-brand { 198 198 font-weight: 700; 199 199 font-size: 14px; 200 - color: #0060ff; /* Primary brand blue */184 + color: #0060ff; 201 201 text-decoration: none !important; 202 202 } 203 203 204 204 .azure-brand { 205 - color: #0078d4; /* Azure blue */189 + color: #0078d4; 206 206 } 207 207 208 208 .footer-divider { ... ... @@ -210,10 +210,9 @@ 210 210 font-weight: 300; 211 211 } 212 212 213 - /* Responsive Breakpoints: Mobile */ 214 214 @media (max-width: 768px) { 215 215 .menu-grid { 216 - grid-template-columns: 1fr; /* Stack to 1 column on mobile */199 + grid-template-columns: 1fr; 217 217 } 218 218 .modern-menu-container { 219 219 padding: 10px;
- 1784741189563-764.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,1 +1,0 @@ 1 -164.0 KB - Content
- 1784741289632-457.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,1 +1,0 @@ 1 -85.0 KB - Content
- 1784751495894-847.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,1 +1,0 @@ 1 -82.0 KB - Content
- FirstDigital-Logo.png
-
- Size
-
... ... @@ -1,1 +1,1 @@ 1 -14. 3KB1 +14.5 KB - Content
- MS%20teams.webp
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,1 +1,0 @@ 1 -20.2 KB - Content
- webexbycisco-3d-vertical-color-black-text.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,1 +1,0 @@ 1 -1.2 MB - Content
- MS teams.webp
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,0 +1,1 @@ 1 +26.7 KB - Content
- Webex-Symbol.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.aaronblackburnfirstdigitalcom - Size
-
... ... @@ -1,0 +1,1 @@ 1 +671.0 KB - Content