Skip to content

Commit a8eee58

Browse files
committed
Updated home contents
1 parent 758e7b5 commit a8eee58

File tree

3 files changed

+78
-20
lines changed

3 files changed

+78
-20
lines changed

assets/admin/css/admin-styles.css

Lines changed: 47 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,38 @@ button {
142142
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
143143
}
144144

145+
.container {
146+
width: 100%;
147+
padding-right: 15px;
148+
padding-left: 15px;
149+
margin-right: auto;
150+
margin-left: auto;
151+
}
152+
153+
@media (min-width: 576px) {
154+
.container {
155+
max-width: 540px;
156+
}
157+
}
158+
159+
@media (min-width: 768px) {
160+
.container {
161+
max-width: 720px;
162+
}
163+
}
164+
165+
@media (min-width: 992px) {
166+
.container {
167+
max-width: 960px;
168+
}
169+
}
170+
171+
@media (min-width: 1200px) {
172+
.container {
173+
max-width: 1140px;
174+
}
175+
}
176+
145177
.button.ma-btn {
146178
background: #5A00F0;
147179
color: #fff;
@@ -234,6 +266,16 @@ button {
234266
margin: 20px 40px 0 20px;
235267
}
236268

269+
#mtbody-content .ma-btn:hover {
270+
background: #6000ff;
271+
color: white;
272+
}
273+
274+
#mtbody-content .ma-btn:focus {
275+
background: #5A00F0;
276+
color: #fff;
277+
}
278+
237279
.ma-settings {
238280
padding: 15px;
239281
}
@@ -338,7 +380,7 @@ button {
338380
.ma-tabs-content-block-wrap {
339381
display: grid;
340382
align-items: center;
341-
grid-template-columns: repeat(3, 1fr);
383+
grid-template-columns: repeat(2, 1fr);
342384
grid-gap: 15px;
343385
}
344386

@@ -603,6 +645,10 @@ button {
603645
color: #78909C;
604646
}
605647

648+
.mt-banner img {
649+
width: 100%;
650+
}
651+
606652
/* Extension (Coming Soon) */
607653

608654
.coming-soon .mt-illustration {
@@ -626,13 +672,3 @@ button {
626672
margin-top: 26px;
627673
text-transform: capitalize;
628674
}
629-
630-
.coming-soon .cs-cta:hover {
631-
background: #6000ff;
632-
color: white;
633-
}
634-
635-
.coming-soon .cs-cta:focus {
636-
background: #5A00F0;
637-
color: #fff;
638-
}

assets/admin/images/banner.jpg

134 KB
Loading

panel/home.php

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,52 @@
1313
?>
1414

1515
<div id="general" class="ma-tabs-content">
16-
<div class="ma-row ma-tabs-content-wrap">
16+
<div class="mt-banner">
17+
<img class="banner" src="<?php echo MIGHTY_ADDONS_PLG_URL . 'assets/admin/images/banner.jpg'; ?>" alt="">
18+
</div>
19+
<div class="ma-row ma-tabs-content-wrap container">
1720
<div class="ma-tabs-content-inner">
1821
<div class="ma-tabs-content-block-wrap">
19-
<!-- Documentation Block -->
2022
<div class="ma-tabs-block ma-tabs-block-docs">
2123
<header class="ma-tabs-block-header">
22-
<h4 class="ma-tabs-block-title">Documentation</h4>
24+
<h4 class="ma-tabs-block-title">Need Help?</h4>
25+
</header>
26+
<div class="ma-tabs-block-content">
27+
<p>Facing issues while using addons? Get help from our dedicated WordPress Developers on <a href="https://mightythemes.com/support/c/mighty-addons/" target="_blank">Mighty Addons Official Forum</a>. Or join our <a target="_blank" href="https://www.facebook.com/groups/mightythemes/">Facebook Community</a> and post your questions there as well.</p>
28+
<a href="https://mightythemes.com/support/c/mighty-addons/" class="ma-btn" target="_blank">Reach out on Forum</a>
29+
</div>
30+
</div>
31+
32+
<div class="ma-tabs-block ma-tabs-block-docs">
33+
<header class="ma-tabs-block-header">
34+
<h4 class="ma-tabs-block-title">Missing Any Feature?</h4>
2335
</header>
2436
<div class="ma-tabs-block-content">
25-
<p>Get started by spending some time with the documentation to get familiar with Essential Addons. Build awesome websites for you or your clients with ease.</p>
26-
<a href="#" class="ma-btn" target="_blank">Documentation</a>
37+
<p>Are we missing any features that you need for your project? Submit feature requests on GitHub and help us improve Mighty Addons.</p>
38+
<a href="https://github.com/mightythemes/Mighty-Addons/issues/new?template=issue_template.md&title=Feature%20Request:&labels=Feature%20Request" class="ma-btn" target="_blank">Request a Feature</a>
2739
</div>
2840
</div>
2941

30-
<!-- Documentation Block -->
3142
<div class="ma-tabs-block ma-tabs-block-docs">
3243
<header class="ma-tabs-block-header">
33-
<h4 class="ma-tabs-block-title">Documentation</h4>
44+
<h4 class="ma-tabs-block-title">Developer? Want to Contribute?</h4>
3445
</header>
3546
<div class="ma-tabs-block-content">
36-
<p>Get started by spending some time with the documentation to get familiar with Essential Addons. Build awesome websites for you or your clients with ease.</p>
37-
<a href="#" class="ma-btn" target="_blank">Documentation</a>
47+
<p>We 💗 Open Source. You can contribute to MightyAddons by reporting bugs, creating issues and pull requests on GitHub.</p>
48+
<a href="https://github.com/mightythemes/Mighty-Addons/issues/new?template=issue_template.md&title=&labels=bug" class="ma-btn" target="_blank">Report a Bug</a>
3849
</div>
3950
</div>
51+
52+
<div class="ma-tabs-block ma-tabs-block-docs">
53+
<header class="ma-tabs-block-header">
54+
<h4 class="ma-tabs-block-title">Loved it? Show Your Love.</h4>
55+
</header>
56+
<div class="ma-tabs-block-content">
57+
<p>Thanks for choosing Mighty Addons plugin. We are making it awesome day by day. That being said, if you could take a minute to post a review, we would so appreciate it.</p>
58+
<a href="https://wordpress.org/support/plugin/mighty-addons/reviews/#new-post" class="ma-btn" target="_blank">Yeah, you deserve 5 Stars</a>
59+
</div>
60+
</div>
61+
4062
</div>
4163
</div>
4264
</div>

0 commit comments

Comments
 (0)