appscms-tools-theme 0.2.4 → 0.2.5
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/assets/css/blog.css +12 -0
- metadata +1 -2
- data/_includes/header.html +0 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4152e6c6de9f071a763f00ac8f89328b3b4f7e03fe37fc20a7e33a6da05f17e2
|
|
4
|
+
data.tar.gz: 972fb9aced58636246efcb506659ebb0d53c3eb3ff212469db12275a042b1828
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6081c81837ef03ed6643668034eef786114aa471120c6c90e20bb046bf45fd90d8190283c3214521b5598c00cab812894dc61e3e4a32563c472c8ab84f8fceb
|
|
7
|
+
data.tar.gz: d9e9ff0790bf5272e690f033c96f06b9a23e11d8938355a55617ca8af938dbabb419c09255db0211c24f047e7205ef44c8f7cb3b4dc5105686a5f56672451c9d
|
data/assets/css/blog.css
CHANGED
|
@@ -400,3 +400,15 @@ header {
|
|
|
400
400
|
margin-top: 10px;
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
|
+
|
|
404
|
+
@media (max-width: 992px) {
|
|
405
|
+
.dropdown:hover .dropdown-menu {
|
|
406
|
+
left: 0px;
|
|
407
|
+
padding: 0;
|
|
408
|
+
}
|
|
409
|
+
.dropdown-item {
|
|
410
|
+
text-align: left;
|
|
411
|
+
font-weight: 600;
|
|
412
|
+
padding: 0.25rem 0;
|
|
413
|
+
}
|
|
414
|
+
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appscms-tools-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
@@ -79,7 +79,6 @@ files:
|
|
|
79
79
|
- _includes/custom-head.html
|
|
80
80
|
- _includes/footer/index.html
|
|
81
81
|
- _includes/head/index.html
|
|
82
|
-
- _includes/header.html
|
|
83
82
|
- _includes/header/index.html
|
|
84
83
|
- _includes/paginationBlogPage.html
|
|
85
84
|
- _includes/paginationPostPage.html
|
data/_includes/header.html
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<!-- header starts -->
|
|
2
|
-
<header id="header">
|
|
3
|
-
<!-- navigation startss -->
|
|
4
|
-
<nav class="navbar navbar-expand-lg navbar-dark bg-light">
|
|
5
|
-
<a class="navbar-brand" href="/" title="{{site.data.nav.navbar-brand-text}}">
|
|
6
|
-
{{site.data.nav.navbar-brand-text}}
|
|
7
|
-
</a>
|
|
8
|
-
|
|
9
|
-
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
|
10
|
-
<i class="fas fa-bars fa-2x" style="color:#000"></i>
|
|
11
|
-
</button>
|
|
12
|
-
|
|
13
|
-
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
14
|
-
<ul class="navbar-nav ml-auto">
|
|
15
|
-
<li class="nav-item">
|
|
16
|
-
<a class="nav-link" href="/blog">{{site.data.nav.item}}</a>
|
|
17
|
-
</li>
|
|
18
|
-
</ul>
|
|
19
|
-
</div>
|
|
20
|
-
</nav>
|
|
21
|
-
<!-- navbar close -->
|
|
22
|
-
</header>
|
|
23
|
-
<!-- header close -->
|