Skip to content

Commit

Permalink
fix: update blog docs styles
Browse files Browse the repository at this point in the history
  • Loading branch information
mimoning committed Nov 29, 2024
1 parent aafb5ff commit dd2b94f
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 21 deletions.
2 changes: 1 addition & 1 deletion src/components/layout/docLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import FlexibleSectionContainer from '../../flexibleSection';
import Header from '../../header';
import Footer from '../../footer';
import InkeepChatButtonContainer from '@/components/inkeep/InkeepChatButton';
import 'highlight.js/styles/atom-one-light.css';
import 'highlight.js/styles/atom-one-dark.css';
import { LanguageEnum } from '@/components/language-selector';

const MENU_MINIMUM_WIDTH = 22;
Expand Down
8 changes: 6 additions & 2 deletions src/components/share/index.module.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
.share {
display: flex;
gap: 10px;
gap: 16px;
}
.icon {
width: 24px;
width: 32px;

&:hover {
opacity: 0.7;
}
}
5 changes: 3 additions & 2 deletions src/pages/blog/[id].jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import BlogAnchorSection from '../../parts/blogs/blogAnchors';
import pageClasses from '../../styles/responsive.module.less';
import { ABSOLUTE_BASE_URL } from '@/consts';
import { useCopyCode } from '../../hooks/enhanceCodeBlock';
import 'highlight.js/styles/atom-one-light.css';
import 'highlight.js/styles/atom-one-dark.css';

export default function Template(props) {
const {
Expand Down Expand Up @@ -91,7 +91,8 @@ export default function Template(props) {
<section className={styles.blogHeader}>
<p className={styles.breadcrumb}>
<a href="https://milvus.io">
{ homeIcon }
{/* { homeIcon } */}
Home
</a>
{ sepIcon }
<a href="/blog">Blogs</a>
Expand Down
5 changes: 5 additions & 0 deletions src/styles/blogDetail.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
text-decoration: none;
cursor: pointer;
font-weight: 500;

&:hover {
text-decoration: underline;
text-underline-position: from-font;
}
}

svg {
Expand Down
64 changes: 49 additions & 15 deletions src/styles/docsStyle.less
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

color: var(--color-default-text);

& > *:first-child {
margin-top: 0;
}

details {
margin-bottom: 24px;
}
Expand Down Expand Up @@ -104,6 +108,11 @@
color: @color-black1;
text-decoration: underline;
text-underline-position: from-font;
transition: background-color 0.1s linear;

&:hover {
background-color: @color-black4;
}

p {
display: inline;
Expand Down Expand Up @@ -196,14 +205,15 @@
background-color: @color-black1;
margin: 20px 0 40px;
position: relative;
padding: 24px;
white-space: pre-wrap;

&:has(code[class*='active']) {
border: 1px solid @color-grey-04;
}

code {
color: @color-black3;
padding: 24px;
color: @color-white1;
display: block;
font-size: 14px;
line-height: 20px;
Expand All @@ -220,10 +230,14 @@
}
}

p + pre {
margin-top: calc(20px - @block-margin);
}

li {
//styleName: Body/Body2.Small;
font-size: 16px;
line-height: 24px;
line-height: 1.7;
text-align: left;
color: #000;
position: relative;
Expand All @@ -242,7 +256,12 @@
margin: @block-margin 0;
padding-left: 24px;

& > li {
padding-left: 6px;
}

& > li::marker {
color: @color-grey-03;
font-size: 16px;
display: inline-block;
margin-right: 16px;
Expand All @@ -254,6 +273,10 @@
padding-left: 24px;
margin: 8px 0;

& > li {
padding-left: 6px;
}

& > li::marker {
font-size: 16px;
line-height: 1.4em;
Expand Down Expand Up @@ -416,11 +439,12 @@
}

table {
margin-bottom: 24px;
background-color: var(--pre-bg-color);
margin: 24px 0;
// background-color: var(--pre-bg-color);
overflow-x: auto;
width: 100%;
border-radius: 4px;
border-radius: 12px;
border: 1px solid @color-black4;
display: block;
hyphens: none;

Expand All @@ -434,12 +458,16 @@
font-size: 16px;
line-height: 22px;
text-align: left;
background-color: #e8e8e8;
// background-color: #e8e8e8;
min-width: 100%;
width: calc(100vw - 32px);

th {
text-align: left;
text-align: left!important;

&:not(:last-child) {
border-right: 1px solid @color-black4;
}
}
}

Expand All @@ -455,20 +483,26 @@
}

tr {
border-bottom: 1px solid #eee;
border-bottom: 1px solid @color-black4;

&:hover {
background-color: #e8e8e8;
background-color: @color-white1;
}
}

td {
padding: 12px;
text-align: left;
font-size: 16px;
line-height: 1.4em;
padding: 10px 20px;
text-align: left!important;
font-size: 14px;
line-height: 1.5;
width: calc(100vw - 32px);
vertical-align: text-top;
font-weight: 500;
color: @color-black2;

&:not(:last-child) {
border-right: 1px solid @color-black4;
}

@media @tablet {
font-size: 14px;
Expand All @@ -483,7 +517,7 @@
th {
font-size: 16px;
line-height: 1.5;
padding: 12px;
padding: 10px 20px;
font-weight: 600;
}

Expand Down
2 changes: 1 addition & 1 deletion src/styles/variables.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@color-warning: #d51f00;
@color-black: #000000;
@color-white: #ffffff;
@color-white1: #f9f9f9f9;
@color-white1: #f9f9f9;
@color-black1: #00131a;
@color-black1-5: #2E373B;
@color-black2: #667176;
Expand Down

0 comments on commit dd2b94f

Please sign in to comment.