PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.15.3
GiveWP – Donation Plugin and Fundraising Platform v4.15.3
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
give / src / DonorDashboards / resources / views / donordashboardloader.php

donordashboardloader.php in GiveWP – Donation Plugin and Fundraising Platform 4.15.3, at src/DonorDashboards/resources/views/donordashboardloader.php

39 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 $primaryColor = ! empty($accentColor) ? $accentColor : '#28C77B';
4 $primaryColor = trim($accentColor, '#');
5
6 $loaderBG = "&quot;data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='utf-8'?%3E%3C!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 349 348' style='enable-background:new 0 0 349 348;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0{fill:%23{$primaryColor};} %3C/style%3E%3Cpath class='st0' d='M25.1,204.57c-13.38,0-24.47-10.6-24.97-24.08C0.04,178.09,0,175.97,0,174C0,77.78,78.28-0.5,174.5-0.5 c13.81,0,25,11.19,25,25s-11.19,25-25,25C105.85,49.5,50,105.35,50,174c0,1.37,0.03,2.85,0.1,4.65c0.51,13.8-10.27,25.39-24.07,25.9 C25.72,204.56,25.41,204.57,25.1,204.57z'/%3E%3Cpath class='st0' d='M174.5,348.5c-13.81,0-25-11.19-25-25c0-13.81,11.19-25,25-25c68.65,0,124.5-55.85,124.5-124.5 c0-1.38-0.03-2.85-0.1-4.65c-0.51-13.8,10.26-25.4,24.06-25.91c13.83-0.53,25.4,10.26,25.91,24.06c0.09,2.39,0.13,4.51,0.13,6.49 C349,270.22,270.72,348.5,174.5,348.5z'/%3E%3C/svg%3E&quot;";
7
8 ?>
9
10 <div class="iframe-loader"
11 style="width: 100%; height: 100%; min-height: 790px; position: absolute; top: 0; left: 0; pointer-events: none;">
12 <div style="
13 background: white;
14 width: calc(90% - 12px);
15 height: 100%;
16 max-width: 920px;
17 margin: 8px auto;
18 border-radius: 8px;
19 display: flex;
20 align-items: center;
21 justify-content: center;
22 -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
23 0 3px 1px -2px rgba(0, 0, 0, 0.2),
24 0 1px 5px 0 rgba(0, 0, 0, 0.12);
25 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
26 0 3px 1px -2px rgba(0, 0, 0, 0.2),
27 0 1px 5px 0 rgba(0, 0, 0, 0.12);
28 ">
29 <div style="
30 pointer-events: none;
31 height: 90px;
32 width: 90px;
33 background-image: url(<?php
34 echo $loaderBG; ?>);
35 animation: spin 0.6s linear infinite;
36 "></div>
37 </div>
38 </div>
39