@cccarv82/freya 1.0.36 → 1.0.37
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.
- package/cli/web-ui.css +40 -0
- package/package.json +1 -1
package/cli/web-ui.css
CHANGED
|
@@ -174,6 +174,46 @@ body {
|
|
|
174
174
|
padding: 14px 16px;
|
|
175
175
|
border-bottom: 1px solid var(--line);
|
|
176
176
|
background: linear-gradient(90deg, rgba(255,250,242,.75), rgba(255,250,242,.45));
|
|
177
|
+
/* Align vertical dividers with the 3-column shell */
|
|
178
|
+
position: relative;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/* Draw column dividers through the topbar to avoid misalignment “TOC” */
|
|
182
|
+
.topbar::before {
|
|
183
|
+
content: '';
|
|
184
|
+
position: absolute;
|
|
185
|
+
inset: 0;
|
|
186
|
+
pointer-events: none;
|
|
187
|
+
background:
|
|
188
|
+
linear-gradient(to right,
|
|
189
|
+
transparent 0,
|
|
190
|
+
transparent 290px,
|
|
191
|
+
var(--line) 290px,
|
|
192
|
+
var(--line) 291px,
|
|
193
|
+
transparent 291px,
|
|
194
|
+
transparent calc(100% - 380px),
|
|
195
|
+
var(--line) calc(100% - 380px),
|
|
196
|
+
var(--line) calc(100% - 379px),
|
|
197
|
+
transparent calc(100% - 379px)
|
|
198
|
+
);
|
|
199
|
+
opacity: .9;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@media (max-width: 1200px) {
|
|
203
|
+
.topbar::before {
|
|
204
|
+
background:
|
|
205
|
+
linear-gradient(to right,
|
|
206
|
+
transparent 0,
|
|
207
|
+
transparent 290px,
|
|
208
|
+
var(--line) 290px,
|
|
209
|
+
var(--line) 291px,
|
|
210
|
+
transparent 291px
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
@media (max-width: 860px) {
|
|
216
|
+
.topbar::before { display: none; }
|
|
177
217
|
}
|
|
178
218
|
|
|
179
219
|
[data-theme="dark"] .topbar { background: linear-gradient(90deg, rgba(17,24,39,.88), rgba(17,24,39,.55)); }
|