Skip to content

Commit 0d3b763

Browse files
committed
refined release notes
1 parent de701b9 commit 0d3b763

File tree

2 files changed

+871
-0
lines changed

2 files changed

+871
-0
lines changed
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
/* Header styling */
2+
h2 {
3+
margin-top: 1.2em;
4+
scroll-margin-top: 1.2em;
5+
}
6+
7+
h2:not(:first-of-type) {
8+
margin-top: 4em;
9+
scroll-margin-top: 1em;
10+
}
11+
12+
h3 {
13+
margin-top: 2em;
14+
scroll-margin-top: 1em;
15+
}
16+
17+
h2 + h3 {
18+
margin-top: 0;
19+
}
20+
21+
/* TOC Navigation styling */
22+
.toc-link {
23+
color: var(--vscode-editor-foreground, #ccc);
24+
text-decoration: none;
25+
transition: color 0.2s;
26+
padding-bottom: 2px;
27+
}
28+
29+
.toc-link:hover {
30+
color: var(--vscode-textLink-activeForeground, #0066cc);
31+
cursor: pointer;
32+
}
33+
34+
/* Sparkle chat button styling */
35+
#sparkle-chat {
36+
position: fixed;
37+
top: 20px;
38+
right: 20px;
39+
width: 40px;
40+
height: 40px;
41+
background: var(--vscode-button-secondaryBackground, #3c3c3c);
42+
border: .25px solid var(--vscode-button-secondaryBorder, #6c6c6c);
43+
border-radius: 50%;
44+
display: flex;
45+
align-items: center;
46+
justify-content: center;
47+
cursor: pointer;
48+
z-index: 1000;
49+
text-decoration: none;
50+
transition: background-color 0.2s;
51+
}
52+
53+
#sparkle-chat:hover {
54+
background: var(--vscode-button-secondaryHoverBackground, #1177bb);
55+
}
56+
57+
#sparkle-chat:focus {
58+
outline: none;
59+
border: .25px solid var(--vscode-button-secondaryBorder, #6c6c6c);
60+
}
61+
62+
/* Highlights table styling */
63+
.highlights-table {
64+
border-collapse: collapse;
65+
border: none;
66+
}
67+
68+
.highlights-table th {
69+
vertical-align: top;
70+
border: none;
71+
padding-top: 2em;
72+
}
73+
74+
.highlights-table th span {
75+
font-weight: bold;
76+
}
77+
.highlights-table th span {
78+
font-weight: bold;
79+
}
80+
81+
.highlights-table td {
82+
vertical-align: top;
83+
border: none;
84+
}
85+
86+
.highlights-table td.first-row {
87+
padding-bottom: 1em;
88+
}
89+
90+
/* Main content layout */
91+
.main-content-layout {
92+
display: flex;
93+
align-items: flex-start;
94+
}
95+
96+
/* TOC Navigation */
97+
#toc-nav {
98+
position: sticky;
99+
top: 20px;
100+
width: 10vw;
101+
min-width: 120px;
102+
margin-right: 32px;
103+
margin-top: 2em;
104+
}
105+
106+
#toc-nav > div {
107+
font-weight: bold;
108+
font-size: 1em;
109+
margin-bottom: 1em;
110+
}
111+
112+
#toc-list {
113+
list-style: none;
114+
padding: 0;
115+
margin: 0;
116+
}
117+
118+
#toc-list li {
119+
margin-bottom: 1em;
120+
}
121+
122+
/* Main content area */
123+
.content-main {
124+
flex: 1;
125+
min-width: 0;
126+
}

0 commit comments

Comments
 (0)