Skip to content

Commit cf54bde

Browse files
author
Nikola Miljković
committed
Release 2.13.1
2 parents 7ae4e4e + 23f8f94 commit cf54bde

25 files changed

+334
-122
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
### Expected Behaviour
22

3-
1.
3+
1.
4+
2.
45

56
### Actual Behaviour
67

7-
1.
8+
1.
9+
2.
810

911
### Steps To Reproduce
1012

11-
1.
13+
1.
14+
2.
1215

1316
### Platform
14-
**Sermon Manager Version:**
15-
**WordPress Version:**
17+
**Sermon Manager Version:**
18+
**WordPress Version:**
1619
**PHP Version:**
1720

1821
### Any Additional Info

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
## Types of changes
2-
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
1+
## Types of changes:
2+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply (remove the space character first): -->
33
- [ ] Bug fix (non-breaking change which fixes an issue)
44
- [ ] New feature (non-breaking change which adds functionality)
55
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
66

77
## Checklist:
88
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
99
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
10-
- [ ] My code follows the code style of this project. (WPCS)
10+
- [ ] I have read the [**CONTRIBUTING**](CONTRIBUTING.md) document.
11+
- [ ] My code follows the code style of this project. ([WPCS](https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards))
1112
- [ ] My change requires a change to the documentation.
12-
- [ ] I have read the **CONTRIBUTING** document.
1313

14-
<!--
15-
========== ATTRIBUTION ==========
16-
PR Template copied from: https://github.com/h5bp/html5-boilerplate/blob/master/.github/PULL_REQUEST_TEMPLATE.md
17-
-->
14+
## Brief description of the proposed change:
15+
<!--- What does your change do? What does it fix or change? -->
16+
17+
18+
19+
## Any other info:
20+
<!-- Such as: possible pitfalls, required changes on update, unfinished features, etc... -->
21+
22+

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.idea
1+
.idea
2+
**/*.scssc

assets/css/partials/_shortcodes.scss

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,75 @@ ul#wpfc_images_grid {
1515
.wpfc_grid_title {
1616
margin: 0;
1717
}
18-
}
18+
}
19+
20+
// Podcasts.
21+
$itunes-color : #732BBE;
22+
$android-color : #6AB344;
23+
$overcast-color : #ff8800;
24+
25+
.subscribe {
26+
text-align: center;
27+
28+
li {
29+
display: inline-block;
30+
border: none;
31+
width: 250px;
32+
box-sizing: border-box;
33+
margin-bottom: 1em;
34+
35+
@media screen and (min-width: 400px) {
36+
&:not(:last-child) {
37+
margin-right: 1em;
38+
}
39+
}
40+
41+
a {
42+
display: block;
43+
text-align: center;
44+
color: white;
45+
padding: 55px 20px 10px;
46+
border-radius: 5px;
47+
text-shadow: none;
48+
text-decoration: none;
49+
box-shadow: none;
50+
transition: all .3s ease;
51+
background-repeat: no-repeat;
52+
background-position: center 10px;
53+
background-size: 40px;
54+
55+
&.itunes {
56+
background-color: $itunes-color;
57+
58+
&:focus, &:hover, &:active {
59+
background-color: darken($itunes-color, 20%);
60+
}
61+
}
62+
63+
&.android {
64+
background-color: $android-color;
65+
66+
&:focus, &:hover, &:active {
67+
background-color: darken($android-color, 20%);
68+
}
69+
}
70+
71+
&.overcast {
72+
background-color: $overcast-color;
73+
74+
&:focus, &:hover, &:active {
75+
background-color: darken($overcast-color, 20%);
76+
}
77+
}
78+
79+
&.itunes,
80+
&.overcast {
81+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="#FFF" d="M62.471 80.309c-.572.209-1.198-.312-1.094-.938.156-1.094.312-2.24.521-3.439.104-.833.208-1.666.312-2.448.052-.312.208-.521.469-.625 10.837-5.522 18.339-16.783 18.339-29.756 0-19.017-15.942-34.334-35.168-33.292-17.61.938-31.625 15.943-31.521 33.553.104 12.973 7.658 24.181 18.548 29.6.26.104.417.364.469.625.104.729.208 1.511.312 2.344.208 1.251.365 2.397.573 3.543.104.625-.573 1.146-1.146.887-15.473-6.047-26.258-21.474-25.372-39.24.99-20.163 17.246-36.679 37.408-37.93 23.237-1.458 42.566 16.985 42.566 39.909.001 16.88-10.419 31.32-25.216 37.207zm1.563-16.053c-.521.416-1.251.051-1.354-.626-.156-1.459-.573-3.179-1.512-4.793-.208-.313-.156-.729.156-1.042 3.96-3.647 6.461-8.857 6.461-14.693 0-11.774-10.264-21.205-22.299-19.902-9.222 1.042-16.725 8.649-17.61 17.923-.677 6.564 1.928 12.608 6.356 16.672.312.312.364.729.156 1.042-.938 1.614-1.354 3.334-1.511 4.845-.104.625-.834.99-1.354.574-6.461-5.002-10.577-12.869-10.42-21.727.312-13.859 11.566-25.425 25.373-26.051 15.318-.729 27.978 11.462 27.978 26.624 0 8.597-4.116 16.308-10.42 21.154zM47.778 53.105c-6.46 0-11.67-5.21-11.67-11.67s5.21-11.67 11.67-11.67c6.461 0 11.671 5.21 11.671 11.67s-5.21 11.67-11.671 11.67zm10.785 22.358c-.781 5.419-1.563 10.994-2.866 16.308-.938 3.803-4.48 4.688-7.919 4.688s-6.981-.886-7.919-4.688c-1.303-5.314-2.084-10.89-2.866-16.309-.521-3.387-.886-6.824-.886-10.27 0-7.034 5.679-8.754 11.67-8.754s11.671 1.72 11.671 8.754c.001 3.447-.364 6.884-.885 10.271z"/></svg>');
82+
}
83+
84+
&.android {
85+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="#FFF" d="M20.646 39.73v23.865c0 3.164-2.498 5.717-5.661 5.717s-5.717-2.553-5.717-5.717V39.73c0-3.108 2.553-5.662 5.717-5.662 3.108.001 5.661 2.554 5.661 5.662zm53.337-6.605H22.645c0-8.825 5.272-16.484 13.098-20.48l-3.94-7.271c-.222-.388-.111-.888.277-1.11.389-.167.888-.056 1.11.333l3.996 7.326c3.386-1.499 7.16-2.331 11.156-2.331s7.77.833 11.156 2.331l3.996-7.326c.222-.389.721-.5 1.109-.333.389.222.5.722.277 1.11l-3.939 7.271c7.77 3.997 13.042 11.656 13.042 20.48zm-.167 38.963c0 3.385-2.719 6.105-6.049 6.105h-4.162v12.599a5.71 5.71 0 0 1-5.717 5.717 5.71 5.71 0 0 1-5.717-5.717V78.193h-7.66v12.599a5.71 5.71 0 0 1-5.717 5.717c-3.108 0-5.661-2.554-5.661-5.717l-.056-12.599H28.97a6.088 6.088 0 0 1-6.105-6.105V35.124h50.95v36.964zM38.795 21.692a2.167 2.167 0 0 0-2.165-2.165c-1.166 0-2.109.999-2.109 2.165s.943 2.165 2.109 2.165a2.167 2.167 0 0 0 2.165-2.165zm23.367 0c0-1.166-.943-2.165-2.109-2.165-1.221 0-2.164.999-2.164 2.165s.943 2.165 2.164 2.165c1.166 0 2.109-.999 2.109-2.165zm25.253 41.904a5.71 5.71 0 0 1-5.717 5.717c-3.108 0-5.661-2.553-5.661-5.717V39.73a5.65 5.65 0 0 1 5.661-5.662c3.163 0 5.717 2.498 5.717 5.662v23.866z"/></svg>');
86+
}
87+
}
88+
}
89+
}

assets/css/sermon.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)