mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-20 19:02:33 +00:00
Fix multi-comments & Gemini style
This commit is contained in:
parent
418072b010
commit
e9cb704283
@ -249,3 +249,23 @@ button($color) {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gemini-block() {
|
||||||
|
background: var(--content-bg-color);
|
||||||
|
border-radius: $border-radius-inner;
|
||||||
|
box-shadow: $box-shadow-inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
gemini-block-not-first() {
|
||||||
|
border-radius: $border-radius;
|
||||||
|
box-shadow: $box-shadow;
|
||||||
|
margin-top: $sidebar-offset;
|
||||||
|
|
||||||
|
+tablet() {
|
||||||
|
margin-top: $content-tablet-padding;
|
||||||
|
}
|
||||||
|
|
||||||
|
+mobile() {
|
||||||
|
margin-top: $content-mobile-padding;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -24,25 +24,19 @@
|
|||||||
// Desktop layout styles.
|
// Desktop layout styles.
|
||||||
// ==================================================
|
// ==================================================
|
||||||
// Post blocks.
|
// Post blocks.
|
||||||
.main-inner > {
|
.main-inner {
|
||||||
.sub-menu, .post-block, .tabs-comment, .comments, .pagination {
|
.sub-menu, .post-block, .tabs-comment, .comments, .pagination {
|
||||||
background: var(--content-bg-color);
|
gemini-block();
|
||||||
border-radius: $border-radius-inner;
|
|
||||||
box-shadow: $box-shadow-inner;
|
|
||||||
|
|
||||||
&:not(:first-child):not(.sub-menu) {
|
|
||||||
border-radius: $border-radius;
|
|
||||||
box-shadow: $box-shadow;
|
|
||||||
margin-top: $sidebar-offset;
|
|
||||||
|
|
||||||
+tablet() {
|
|
||||||
margin-top: $content-tablet-padding;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
+mobile() {
|
.post-block:not(:first-child) {
|
||||||
margin-top: $content-mobile-padding;
|
&:not(:first-child) {
|
||||||
|
gemini-block-not-first();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tabs-comment, .comments, .pagination {
|
||||||
|
gemini-block-not-first();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -175,9 +175,12 @@ NexT.utils = {
|
|||||||
const tabContent = nav.nextElementSibling;
|
const tabContent = nav.nextElementSibling;
|
||||||
tabContent.style.overflow = 'hidden';
|
tabContent.style.overflow = 'hidden';
|
||||||
tabContent.style.transition = 'height 1s';
|
tabContent.style.transition = 'height 1s';
|
||||||
const prevHeight = parseInt(window.getComputedStyle(tabContent.querySelector('.active')).height.replace('px', ''), 10);
|
// Comment system selection tab does not contain .active class.
|
||||||
const paddingTop = parseInt(window.getComputedStyle(tabContent.querySelector('.active')).paddingTop.replace('px', ''), 10);
|
const activeTab = tabContent.querySelector('.active') || tabContent.firstChild;
|
||||||
const marginBottom = parseInt(window.getComputedStyle(tabContent.querySelector('.active').firstChild).marginBottom.replace('px', ''), 10);
|
// Hight might be `auto`.
|
||||||
|
const prevHeight = parseInt(window.getComputedStyle(activeTab).height.replace('px', ''), 10) || 0;
|
||||||
|
const paddingTop = parseInt(window.getComputedStyle(activeTab).paddingTop.replace('px', ''), 10);
|
||||||
|
const marginBottom = parseInt(window.getComputedStyle(activeTab.firstChild).marginBottom.replace('px', ''), 10);
|
||||||
tabContent.style.height = prevHeight + paddingTop + marginBottom + 'px';
|
tabContent.style.height = prevHeight + paddingTop + marginBottom + 'px';
|
||||||
// Add & Remove active class on `nav-tabs` & `tab-content`.
|
// Add & Remove active class on `nav-tabs` & `tab-content`.
|
||||||
[...nav.children].forEach(target => {
|
[...nav.children].forEach(target => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user