phcthemes_web_theme_pack 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e779715cb2bf86969be2d8e1c76f36aa0a577248f5434f0661ed3c1574d6040
4
- data.tar.gz: 2c2e99440ff831cd310e8dc4f809636deb0842202984fc9d56074091b053db22
3
+ metadata.gz: 728f5a73688811b34ae4ada3e2fb4e3505b908c9e9bddeb5178729520a522462
4
+ data.tar.gz: e29ff78cbd2e7dc56101463bb705972e8335256ffbb436bb5ce74429b8548886
5
5
  SHA512:
6
- metadata.gz: 9a97980e4bf1f51c433430ebc316783c0d408a160ad15d0f49fad61f778a9ca55ab4f0e165d40adc8caa6bddfe5b6e4651d429ed31f78490bf46ea3f85119904
7
- data.tar.gz: b6700f8dcffa25bfdfaba6c3d0fd19328d565a515455181afedf53d5d080f036223d66de9d669e47707cca4daa7348ed93088e423f6f034cd4c4e545dabb73f3
6
+ metadata.gz: 77d08336c7ba4fdc542877901b57aa285d703cbb3a1b492b88f91503fe197093e162e300e053d04320644be4458e0861df4a29b16aa572d48dce05408beb5fbb
7
+ data.tar.gz: 29e17ab60c793d383f4321877ddf8b2457c959fb816bab561c42fdda01e87ae8eebfdd3ad53f55a17465f771d4e3eef098445ef13c4988a285806a9824ac7d37
@@ -13,4 +13,5 @@
13
13
  //= require themes/antlr/theme/swiper.min.js
14
14
  //= require themes/antlr/theme/lazysizes.min.js
15
15
  //= require themes/antlr/theme/wow.min.js
16
+ //= require themes/antlr/theme/sidebar.js
16
17
  //= require themes/antlr/theme/scripts.js
@@ -0,0 +1,36 @@
1
+ document.addEventListener('DOMContentLoaded', function() {
2
+ "use strict";
3
+ sticky();
4
+ });
5
+ /*----------------------*/
6
+ /* Sticky Sidebar */
7
+ /*----------------------*/
8
+ function sticky() {
9
+ $.fn.scrollBottom = function() {
10
+ return $(document).height() - this.scrollTop() - this.height();
11
+ };
12
+ var $el = $('#sidebar');
13
+ var $window = $(window);
14
+ var top = $el.parent().position().top;
15
+ $window.bind("scroll resize", function() {
16
+ var gap = $window.height() - $el.height() - -35;
17
+ var visibleFoot = 965 - $window.scrollBottom();
18
+ var scrollTop = $window.scrollTop()
19
+ if (scrollTop < top + -35) {
20
+ $el.css({
21
+ top: (top - scrollTop) + "px",
22
+ bottom: "auto"
23
+ });
24
+ } else if (visibleFoot > gap) {
25
+ $el.css({
26
+ top: "auto",
27
+ bottom: visibleFoot + "px"
28
+ });
29
+ } else {
30
+ $el.css({
31
+ top: -35,
32
+ bottom: "auto"
33
+ });
34
+ }
35
+ }).scroll();
36
+ }
@@ -16,7 +16,8 @@
16
16
  @import url("https://frmwrks.phcnetworks.net/antlr/version-2.1.4/template/css/animate.min.css");
17
17
 
18
18
  // Load Theme Files
19
- @import url("https://frmwrks.phcnetworks.net/antlr/version-2.1.4/template/css/style.min.css");
19
+ @import url("https://frmwrks.phcnetworks.net/antlr/version-2.1.4/template/css/filter.css");
20
+ @import url("https://frmwrks.phcnetworks.net/antlr/version-2.1.4/template/css/style.css");
20
21
  @import url("https://frmwrks.phcnetworks.net/antlr/version-2.1.4/template/css/colors/green.css");
21
22
  @import "themes/antlr/maps.scss";
22
23
 
@@ -0,0 +1,189 @@
1
+ /* --------------------------------
2
+ Main Components
3
+ -------------------------------- */
4
+ .cd-header { position: relative; height: 150px; background-color: #331d35; }
5
+ .cd-header h1 { color: #ffffff; line-height: 150px; text-align: center; font-size: 2.4rem; font-weight: 300; }
6
+ @media only screen and (min-width:1170px) {
7
+ .cd-header { height: 180px; }
8
+ .cd-header h1 { line-height: 180px; }
9
+ }
10
+ .cd-main-content:after { content: ""; display: table; clear: both; }
11
+ .cd-main-content.is-fixed .cd-tab-filter-wrapper { position: fixed; top: 0; left: 0; width: 100%; }
12
+ .cd-main-content.is-fixed .cd-gallery { padding-top: 76px; }
13
+ .cd-main-content.is-fixed .cd-filter { position: fixed; height: 100vh; overflow: hidden; }
14
+ .cd-main-content.is-fixed .cd-filter-trigger { position: fixed; }
15
+ @media only screen and (min-width:768px) {
16
+ .cd-main-content.is-fixed .cd-gallery { padding-top: 90px; }
17
+ }
18
+ @media only screen and (min-width:1170px) {
19
+ .cd-main-content.is-fixed .cd-gallery { padding-top: 100px; }
20
+ }
21
+
22
+ /* --------------------------------
23
+ xtab-filter
24
+ -------------------------------- */
25
+ .cd-tab-filter-wrapper { background-color: #ffffff; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); z-index: 1; }
26
+ .cd-tab-filter-wrapper:after { content: ""; display: table; clear: both; }
27
+ .cd-tab-filter { /* tabbed navigation style on mobile - dropdown */
28
+ position: relative; height: 50px; width: 140px; margin: 0 auto; z-index: 1; }
29
+ .cd-tab-filter::after { /* small arrow icon */
30
+ content: ''; position: absolute; right: 14px; top: 50%; bottom: auto; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); display: inline-block; width: 16px; height: 16px; background: url("../img/filter/cd-icon-arrow.svg") no-repeat center center; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; pointer-events: none; }
31
+ .cd-tab-filter ul { position: absolute; top: 0; left: 0; background-color: #ffffff; box-shadow: inset 0 -2px 0 #a3d133; }
32
+ .cd-tab-filter li { display: none; }
33
+ .cd-tab-filter li:first-child { /* this way the placehodler is alway visible */
34
+ display: block; }
35
+ .cd-tab-filter a { display: block; /* set same size of the .cd-tab-filter */ height: 50px; width: 140px; line-height: 50px; padding-left: 14px; }
36
+ .cd-tab-filter a.selected { background: #a3d133; color: #ffffff; }
37
+ .cd-tab-filter.is-open::after { /* small arrow rotation */
38
+ -webkit-transform: translateY(-50%) rotate(-180deg); -moz-transform: translateY(-50%) rotate(-180deg); -ms-transform: translateY(-50%) rotate(-180deg); -o-transform: translateY(-50%) rotate(-180deg); transform: translateY(-50%) rotate(-180deg); }
39
+ .cd-tab-filter.is-open ul { box-shadow: inset 0 -2px 0 #a3d133, 0 2px 10px rgba(0, 0, 0, 0.2); }
40
+ .cd-tab-filter.is-open ul li { display: block; }
41
+ .cd-tab-filter.is-open .placeholder a { /* reduces the opacity of the placeholder on mobile when the menu is open */
42
+ opacity: .4; }
43
+ @media only screen and (min-width:768px) {
44
+ .cd-tab-filter { /* tabbed navigation style on medium devices */
45
+ width: auto; cursor: auto; }
46
+ .cd-tab-filter::after { /* hide the arrow */
47
+ display: none; }
48
+ .cd-tab-filter ul { background: transparent; position: static; box-shadow: none; text-align: center; }
49
+ .cd-tab-filter li { display: inline-block; }
50
+ .cd-tab-filter li.placeholder { display: none !important; }
51
+ .cd-tab-filter a { display: inline-block; padding: 0 1em; width: auto; color: #9a9a9a; text-transform: uppercase; font-weight: 700; font-size: 1.3rem; }
52
+ .no-touch .cd-tab-filter a:hover { color: #a3d133; }
53
+ .cd-tab-filter a.selected { background: transparent; color: #a3d133; /* create border bottom using box-shadow property */ box-shadow: inset 0 -2px 0 #a3d133; }
54
+ .cd-tab-filter.is-open ul li { display: inline-block; }
55
+ }
56
+ @media only screen and (min-width:1170px) {
57
+ .cd-tab-filter { /* tabbed navigation on big devices */
58
+ width: 100%; float: right; margin: 0; -webkit-transition: width 0.3s; -moz-transition: width 0.3s; transition: width 0.3s; }
59
+ .cd-tab-filter.filter-is-visible { /* reduce width when filter is visible */
60
+ width: 80%; }
61
+ }
62
+
63
+ /* --------------------------------
64
+ xgallery
65
+ -------------------------------- */
66
+ .cd-gallery { padding: 26px 5%; width: 100%; }
67
+ .cd-gallery li { margin-bottom: 1.6em; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); display: none; }
68
+ .cd-gallery li.gap { /* used in combination with text-align: justify to align gallery elements */
69
+ opacity: 0; height: 0; display: inline-block; }
70
+ .cd-gallery img { display: block; width: 100%; }
71
+ .mixcontainer .cd-fail-message { box-shadow: 0 5px 15px 0 rgba(110, 110, 110, .1); border-radius: 15px; background: #fff; padding: 30px; text-align: center; display: none; }
72
+ .mixcontainer .sec-main .cd-fail-message { box-shadow: none; padding: 30px 0px 0px 0px; }
73
+ .mixitup-container-failed .cd-fail-message { width: 100%; display: inline-block !important; }
74
+ @media (max-width:767px) {
75
+ .mixitup-container-failed .cd-fail-message { margin-bottom: 80px; }
76
+ }
77
+ @media only screen and (min-width:768px) {
78
+ .cd-gallery { padding: 40px 3%; }
79
+ .cd-gallery ul { text-align: justify; }
80
+ .cd-gallery ul:after { content: ""; display: table; clear: both; }
81
+ .cd-gallery li { width: 48%; margin-bottom: 2em; }
82
+ }
83
+ @media only screen and (min-width:1170px) {
84
+ .cd-gallery { padding: 50px 2%; float: right; -webkit-transition: width 0.3s; -moz-transition: width 0.3s; transition: width 0.3s; }
85
+ .cd-gallery li { width: 23%; }
86
+ .cd-gallery.filter-is-visible { /* reduce width when filter is visible */
87
+ width: 80%; }
88
+ }
89
+
90
+ /* --------------------------------
91
+ xfilter
92
+ -------------------------------- */
93
+ .cd-filter { position: absolute; top: 0; left: 0; width: 280px; background: #ffffff; box-shadow: 4px 4px 20px transparent; z-index: 2; /* Force Hardware Acceleration in WebKit */ -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateX(-100%); -moz-transform: translateX(-100%); -ms-transform: translateX(-100%); -o-transform: translateX(-100%); transform: translateX(-100%); -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s; -moz-transition: -moz-transform 0.3s, box-shadow 0.3s; transition: transform 0.3s, box-shadow 0.3s; }
94
+ .cd-filter .cd-close { position: absolute; top: 0px; right: 5px; height: 45px; line-height: 45px; width: 45px; color: #414142; font-size: 1.3rem; text-align: center; background: #fed800; opacity: 0; font-size: 20px !important; border-radius: 50px; box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1); -webkit-transition: opacity 0.3s; -moz-transition: opacity 0.3s; transition: opacity 0.3s; z-index: 3; }
95
+ .no-touch .cd-filter .cd-close:hover { background: #32255f; }
96
+ .cd-filter.filter-is-visible { -webkit-transform: translateX(0); -moz-transform: translateX(0); -ms-transform: translateX(0); -o-transform: translateX(0); transform: translateX(0); box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2); }
97
+ .cd-filter.filter-is-visible .cd-close { opacity: 1; }
98
+ @media only screen and (min-width:1170px) {
99
+ .cd-filter { width: 20%; }
100
+ .cd-filter form { padding: 70px 10%; }
101
+ }
102
+ .cd-filter-trigger { position: absolute; top: 0; left: 0; line-height: 50px; width: 60px; /* image replacement */ overflow: hidden; text-indent: 100%; color: transparent; white-space: nowrap; z-index: 3; }
103
+ .cd-filter-trigger.filter-is-visible { pointer-events: none; }
104
+ @media only screen and (min-width:1170px) {
105
+ .cd-filter-trigger { width: auto; text-indent: 0; color: #9a9a9a; font-size: 1.3rem; font-weight: 700; padding-left: 24px; background-position: left center; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s; }
106
+ .no-touch .cd-filter-trigger:hover { color: #a3d133; }
107
+ .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover { color: #ffffff; }
108
+ }
109
+
110
+ /* --------------------------------
111
+ xcustom form elements
112
+ -------------------------------- */
113
+ .cd-filter-block { position: relative; margin-bottom: 1.6em; }
114
+ .cd-filter-block h4 { /* filter block title */
115
+ position: relative; margin-bottom: 15px; padding: 10px 0 10px 20px; color: #9a9a9a; text-transform: uppercase; font-weight: 700; font-size: 1.3rem; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; }
116
+ .no-touch .cd-filter-block h4:hover { color: #a3d133; }
117
+ .cd-filter-block h4::before { /* arrow */
118
+ font-family: 'Font Awesome 5 Free'; content: "\f107"; position: absolute; left: 0; top: 17px; width: 16px; height: 16px; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s; }
119
+ .cd-filter-block h4.closed::before { -webkit-transform: translateY(-50%) rotate(-90deg); -moz-transform: translateY(-50%) rotate(-90deg); -ms-transform: translateY(-50%) rotate(-90deg); -o-transform: translateY(-50%) rotate(-90deg); transform: translateY(-50%) rotate(-90deg); }
120
+ .cd-filter-block input, .cd-filter-block select, .cd-filter-block .radio-label::before, .cd-filter-block .checkbox-label::before { /* shared style for input elements */
121
+ font-family: "Open Sans", sans-serif; border-radius: 0; background-color: #ffffff; border: none; }
122
+ .cd-filter-block input, .cd-filter-block select { width: 100%; padding: 15px 60px 15px 30px; border-radius: 50px; font-size: 14px; cursor: pointer; background-color: #ffffff !important; border: solid 1px #d8d8d8 !important; -webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; -o-appearance: none; appearance: none; box-shadow: none; }
123
+ .cd-filter-block input:hover, .cd-filter-block select:hover { -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
124
+ .cd-filter-block label i { color: #d8d8d8; top: 42px; right: 40px; position: absolute; }
125
+ .cd-filter-block input:focus, .cd-filter-block select:focus { outline: none; background-color: #ffffff; }
126
+ .cd-filter-block input { /* custom style for the search element */
127
+ border-color: transparent; background-color: #e6e6e6; /* prevent jump - ios devices */ }
128
+ .cd-filter-block input::-webkit-search-cancel-button { display: none; }
129
+ .cd-filter-block .cd-select { /* select element wrapper */
130
+ position: relative; }
131
+ .cd-filter-block .cd-select::after { /* switcher arrow for select element */
132
+ content: ''; position: absolute; z-index: 1; right: 30px; top: 27px; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); display: block; width: 16px; height: 16px; background: url("../img/filter/cd-icon-arrow.svg") no-repeat center center; pointer-events: none; }
133
+ .cd-filter-block select::-ms-expand { display: none; }
134
+ .cd-filter-block .list li { position: relative; margin-bottom: .8em; }
135
+ .cd-filter-block .list li:last-of-type { margin-bottom: 0; list-style: none; }
136
+ .cd-filter-block input[type=radio], .cd-filter-block input[type=checkbox] { /* hide original check and radio buttons */
137
+ position: absolute; left: 0; top: 0; margin: 0; padding: 0; opacity: 0; z-index: 2; }
138
+ .cd-filter-block .checkbox-label, .cd-filter-block .radio-label { padding-left: 24px; font-size: 1.4rem; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
139
+ .cd-filter-block .checkbox-label::before, .cd-filter-block .checkbox-label::after, .cd-filter-block .radio-label::before, .cd-filter-block .radio-label::after { /* custom radio and check boxes */
140
+ content: ''; display: block; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
141
+ .cd-filter-block .checkbox-label::before, .cd-filter-block .radio-label::before { width: 16px; height: 16px; left: 0; }
142
+ .cd-filter-block .checkbox-label::after, .cd-filter-block .radio-label::after { /* check mark - hidden */
143
+ display: none; }
144
+ .cd-filter-block .checkbox-label::after { /* check mark style for check boxes */
145
+ width: 16px; height: 16px; background: url("../img/filter/cd-icon-check.svg") no-repeat center center; }
146
+ .cd-filter-block .radio-label::before, .cd-filter-block .radio-label::after { border-radius: 50%; }
147
+ .cd-filter-block .radio-label::after { /* check mark style for radio buttons */
148
+ width: 6px; height: 6px; background-color: #ffffff; left: 5px; }
149
+ .cd-filter-block input[type=radio]:checked + label::before, .cd-filter-block input[type=checkbox]:checked + label::before { border-color: #a3d133; background-color: #a3d133; }
150
+ .cd-filter-block input[type=radio]:checked + label::after, .cd-filter-block input[type=checkbox]:checked + label::after { display: block; }
151
+ #ex1Slider .slider-selection { background: #BABABA; }
152
+ .tooltip.in { filter: alpha(opacity=90); opacity: .9; }
153
+ .tooltip.top .tooltip-arrow { bottom: -5px; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; }
154
+ .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; }
155
+ ol, ul { list-style: none; }
156
+ blockquote, q { quotes: none; }
157
+ blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
158
+ table { border-collapse: collapse; border-spacing: 0; }
159
+
160
+ /* --------------------------------
161
+ Custom
162
+ -------------------------------- */
163
+ .cd-gallery { padding: 50px 0px 0px 0px; }
164
+ .cd-gallery li { box-shadow: none; }
165
+ .cd-gallery .wrapper .title { font-size: 18px; font-family: "Open Sans"; }
166
+ .cd-gallery.domains .wrapper .title { font-size: 32px; font-family: "Open Sans"; }
167
+ .cd-tab-filter a.selected { border: none !important; background: #fdd700 !important; color: #fff !important; box-shadow: none !important; }
168
+ .cd-tab-filter a.selected:hover { text-transform: none !important; text-decoration: none !important; }
169
+ .cd-tab-filter a { text-transform: none; font-size: 15px !important; font-family: "Open Sans"; color: #808080; }
170
+ .no-touch .cd-tab-filter a:hover { text-decoration: none !important; }
171
+ .no-touch .cd-filter .cd-close:hover { background-color: #313131 !important; text-decoration: none !important; -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
172
+ .cd-filter.filter-is-visible { font-family: "Open Sans"; box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.1); }
173
+ .cd-filter-block h4 { text-transform: capitalize !important; font-weight: 600 !important; font-size: 16px !important; color: #212122 !important; }
174
+ .cd-filter-block .cd-filter-content input[type='search'] { border: solid 1px #e0e0e0; font-size: 14px !important; background: transparent; }
175
+ .cd-filter-block .cd-filter-content { padding: 0px; }
176
+ .cd-filter-block .checkbox-label::before, .cd-filter-block .radio-label::before { border: solid 1px #808080 !important; }
177
+ .cd-filter-block .checkbox-label, .cd-filter-block .radio-label { position: relative; display: grid !important; font-size: 14px !important; color: #000; }
178
+ .action-content { position: relative; }
179
+ .action { bottom: 0; right: 0; top: 0 !important; left: 0; position: absolute; display: inline-block; height: 100%; border-radius: 15px; background: rgba(0, 0, 0, 0.7); top: 0px; text-align: center; opacity: 0; transition: all 0.3s; z-index: 1; }
180
+ .action:hover { opacity: 1; }
181
+ .action a { margin-right: 20px; font-size: 16px; color: #fff; }
182
+ .action a:last-child { margin-right: 0px; }
183
+ .action a:hover { color: #fdd700; text-decoration: none; }
184
+ .action a i { color: #fff; font-size: 32px; padding: 0px }
185
+ .action a i:hover { color: #fdd700; text-decoration: none; -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
186
+ .action .metatag { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
187
+ .action .rating { font-size: 24px; padding-top: 15px; width: 100%; }
188
+ .action .rating i { font-size: 18px; color: #808080; padding: 2px; }
189
+ .action .rating i:hover { color: #fdd700; text-decoration: none; -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
@@ -1,3 +1,3 @@
1
1
  module PhcthemesWebThemePack
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcthemes_web_theme_pack
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-08 00:00:00.000000000 Z
11
+ date: 2020-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -484,6 +484,7 @@ files:
484
484
  - app/assets/javascripts/themes/antlr/theme/lazysizes.min.js
485
485
  - app/assets/javascripts/themes/antlr/theme/owl.carousel.min.js
486
486
  - app/assets/javascripts/themes/antlr/theme/scripts.js
487
+ - app/assets/javascripts/themes/antlr/theme/sidebar.js
487
488
  - app/assets/javascripts/themes/antlr/theme/slick.min.js
488
489
  - app/assets/javascripts/themes/antlr/theme/swiper.min.js
489
490
  - app/assets/javascripts/themes/antlr/theme/typed.js
@@ -522,6 +523,7 @@ files:
522
523
  - app/assets/stylesheets/phcthemes_web_theme_pack_smarty.scss
523
524
  - app/assets/stylesheets/phcthemes_web_theme_pack_xero.scss
524
525
  - app/assets/stylesheets/phcthemes_web_theme_pack_zoner.scss
526
+ - app/assets/stylesheets/themes/antlr/filter.css
525
527
  - app/assets/stylesheets/themes/antlr/maps.scss
526
528
  - lib/phcthemes_web_theme_pack.rb
527
529
  - lib/phcthemes_web_theme_pack/engine.rb