appscms-tools-theme 4.2.3 → 4.2.4
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 +4 -4
- data/_layouts/feature.html +1 -1
- data/_layouts/imagekit.html +2 -2
- data/assets/css/tools.css +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f44a80d371afcd8f47107bddf02286410e40cf50c6950d03635f65c7214ff1d4
|
|
4
|
+
data.tar.gz: ddd18d32fdc88b28281fdaddc73ce15ac20d3495b6b2b6f38ceda891a0816e13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b8ddccc94e15e05b90b06540d799ec75940fb0fae51c7998c5fa66ce48f424da0851d748f28f89fcef31fa0ac21aa837c9c585a33a7ff6e0b7c96621258acbe
|
|
7
|
+
data.tar.gz: aadc76418bae009779b981d67b44c5fa1f4256edf2df70198a83d80153cfd5f11d028a54b588aad7f93fcba71faa7b66e40a5932e40ec11bf2f1d2f852c6af88
|
data/_layouts/feature.html
CHANGED
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
<div id="Inputbox" class="boxes" style="background: {{boxColor}};">
|
|
81
81
|
<img height="21px" width="21px" src="/assets/images/add.svg" alt="add" {%- if site.crossorigin -%}
|
|
82
82
|
crossorigin {%- endif -%} />
|
|
83
|
-
<span class="ml-3">CHOOSE FILE</span>
|
|
83
|
+
<span class="ml-3 file-text">CHOOSE FILE</span>
|
|
84
84
|
</div>
|
|
85
85
|
<div class="file-pick-dropdown" style="background:{{boxColor}}">
|
|
86
86
|
<i class="fas fa-angle-down arrow-sign"></i>
|
data/_layouts/imagekit.html
CHANGED
|
@@ -63,7 +63,7 @@ layout: feature
|
|
|
63
63
|
endif
|
|
64
64
|
-%}
|
|
65
65
|
/>
|
|
66
|
-
<span class="ml-3">CHOOSE FILE</span>
|
|
66
|
+
<span class="ml-3 file-text">CHOOSE FILE</span>
|
|
67
67
|
</div>
|
|
68
68
|
<div
|
|
69
69
|
class="file-pick-dropdown"
|
|
@@ -178,7 +178,7 @@ layout: feature
|
|
|
178
178
|
endif
|
|
179
179
|
-%}
|
|
180
180
|
/>
|
|
181
|
-
<span class="ml-1">CHOOSE FILE</span>
|
|
181
|
+
<span class="ml-1 file-text">CHOOSE FILE</span>
|
|
182
182
|
</div>
|
|
183
183
|
<div class="file-pick-dropdown">
|
|
184
184
|
<i class="fas fa-angle-down arrow-sign"></i>
|
data/assets/css/tools.css
CHANGED
|
@@ -146,13 +146,13 @@ a:hover {
|
|
|
146
146
|
.feature-h1,
|
|
147
147
|
.home-top-h1,
|
|
148
148
|
.how-to-title {
|
|
149
|
-
font-size:
|
|
149
|
+
font-size: 17px !important;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
.feature-h2,
|
|
153
153
|
.home-top-h2,
|
|
154
154
|
.how-to-title {
|
|
155
|
-
font-size:
|
|
155
|
+
font-size: 15px !important;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
.social-count {
|
|
@@ -1842,3 +1842,7 @@ ol li::marker {
|
|
|
1842
1842
|
margin-top: 8px;
|
|
1843
1843
|
text-transform: capitalize;
|
|
1844
1844
|
}
|
|
1845
|
+
.file-text
|
|
1846
|
+
{
|
|
1847
|
+
font-size: 17px;
|
|
1848
|
+
}
|