@holoviz/panel 1.0.0-rc.7 → 1.0.0-rc.8
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/dist/bundled/fastbasetemplate/fast.css +12 -2
- package/dist/bundled/notificationarea/panel/1.0.0-rc.8/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.0.0-rc.8/dist/bundled/bootstrap5/css/bootstrap.min.css +2 -0
- package/dist/bundled/panel/1.0.0-rc.8/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +2 -0
- package/dist/bundled/panel/1.0.0-rc.8/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.0.0-rc.8/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/plotlyplot/panel/1.0.0-rc.8/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/wheels/{panel-1.0.0rc7-py3-none-any.whl → panel-1.0.0rc8-py3-none-any.whl} +0 -0
- package/package.json +1 -1
- package/dist/bundled/notificationarea/panel/1.0.0-rc.7/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.0.0-rc.7/dist/bundled/bootstrap5/css/bootstrap.min.css +0 -2
- package/dist/bundled/panel/1.0.0-rc.7/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +0 -2
- package/dist/bundled/panel/1.0.0-rc.7/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.0.0-rc.7/dist/bundled/jquery/jquery.slim.min.js +0 -2
- package/dist/bundled/plotlyplot/panel/1.0.0-rc.7/dist/bundled/jquery/jquery.slim.min.js +0 -2
|
@@ -263,6 +263,10 @@ img.app-logo {
|
|
|
263
263
|
box-shadow: 2px 2px 10px silver;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
+
#menu {
|
|
267
|
+
overflow: hidden;
|
|
268
|
+
}
|
|
269
|
+
|
|
266
270
|
#menu * {
|
|
267
271
|
width: 100%;
|
|
268
272
|
}
|
|
@@ -280,15 +284,21 @@ img.app-logo {
|
|
|
280
284
|
|
|
281
285
|
#menu a {
|
|
282
286
|
border-radius: calc(var(--corner-radius) * 1px);
|
|
283
|
-
|
|
287
|
+
color: var(--neutral-foreground-rest);
|
|
288
|
+
display: block;
|
|
289
|
+
font-size: var(--type-ramp-base-font-size);
|
|
290
|
+
line-height: var(--type-ramp-base-line-height);
|
|
291
|
+
padding: 8px 8px 8px 32px;
|
|
292
|
+
text-decoration: none;
|
|
293
|
+
transition: 0.3s;
|
|
284
294
|
width: 100%;
|
|
285
295
|
}
|
|
286
296
|
|
|
287
297
|
#menu a:hover {
|
|
288
298
|
background: var(--accent-fill-hover);
|
|
299
|
+
color: var(--accent-foreground-cut-rest);
|
|
289
300
|
border-radius: calc(var(--corner-radius) * 1px);
|
|
290
301
|
}
|
|
291
|
-
|
|
292
302
|
#menu a:active {
|
|
293
303
|
background: var(--accent-fill-checked);
|
|
294
304
|
border-radius: calc(var(--corner-radius) * 1px);
|
|
Binary file
|
package/package.json
CHANGED