@holoviz/panel 1.0.0 → 1.0.1
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/notificationarea/panel/1.0.1/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.0.1/dist/bundled/bootstrap5/css/bootstrap.min.css +2 -0
- package/dist/bundled/panel/1.0.1/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +2 -0
- package/dist/bundled/panel/1.0.1/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.0.1/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/plotlyplot/panel/1.0.1/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/theme/fast.css +4 -2
- package/dist/bundled/theme/material.css +11 -7
- package/dist/wheels/{panel-1.0.0-py3-none-any.whl → panel-1.0.1-py3-none-any.whl} +0 -0
- package/package.json +1 -1
- package/dist/bundled/notificationarea/panel/1.0.0/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.0.0/dist/bundled/bootstrap5/css/bootstrap.min.css +0 -2
- package/dist/bundled/panel/1.0.0/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +0 -2
- package/dist/bundled/panel/1.0.0/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.0.0/dist/bundled/jquery/jquery.slim.min.js +0 -2
- package/dist/bundled/plotlyplot/panel/1.0.0/dist/bundled/jquery/jquery.slim.min.js +0 -2
|
@@ -370,6 +370,10 @@ textarea.bk-input {
|
|
|
370
370
|
0%, var(--accent-fill-hover) 100%);
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
+
select:-internal-list-box option:checked {
|
|
374
|
+
color: var(--neutral-foreground-rest);
|
|
375
|
+
}
|
|
376
|
+
|
|
373
377
|
/* Choices widget */
|
|
374
378
|
|
|
375
379
|
.choices.is-disabled .choices__inner,
|
|
@@ -804,8 +808,6 @@ iframe {
|
|
|
804
808
|
}
|
|
805
809
|
|
|
806
810
|
.codehilite {
|
|
807
|
-
padding-top: 1px;
|
|
808
|
-
padding-bottom: 1px;
|
|
809
811
|
padding-left: 1em;
|
|
810
812
|
padding-right: 1em;
|
|
811
813
|
border-radius: calc(var(--corner-radius) * 1px);
|
|
@@ -217,6 +217,10 @@ button.mdc-button.mdc-card-button {
|
|
|
217
217
|
color: var(--design-secondary-text-color, var(--panel-on-secondary-color));
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
+
.bk-input-group {
|
|
221
|
+
margin-top: 0.5rem;
|
|
222
|
+
}
|
|
223
|
+
|
|
220
224
|
.bk-input:not([type='file']) {
|
|
221
225
|
border-radius: 4px;
|
|
222
226
|
height: 1.4375em;
|
|
@@ -252,17 +256,13 @@ textarea.bk-input:not([type='file']) {
|
|
|
252
256
|
position: absolute;
|
|
253
257
|
left: 0;
|
|
254
258
|
top: 0;
|
|
255
|
-
transform:
|
|
259
|
+
transform: scale(0.75);
|
|
256
260
|
line-height: 1.4375em;
|
|
257
261
|
font-size: 1rem;
|
|
258
262
|
transform-origin: top left;
|
|
259
263
|
z-index: 1;
|
|
260
264
|
padding: 0 10px;
|
|
261
|
-
margin:
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.bk-input-group > label:has(+ select) {
|
|
265
|
-
margin: 6px 0;
|
|
265
|
+
margin: 0rem 0.5rem;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
/* Number input */
|
|
@@ -285,13 +285,17 @@ select:not([multiple]).bk-input,
|
|
|
285
285
|
select:not([size]).bk-input {
|
|
286
286
|
background-image: url('data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0,0 25,0 12.5,20 Z" fill="black" /></svg>');
|
|
287
287
|
min-height: 1.4375em;
|
|
288
|
-
padding:
|
|
288
|
+
padding: 8px 10px;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
291
|
select[multiple].bk-input {
|
|
292
292
|
padding: 10px 10px;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
.bk-input-group select.bk-input {
|
|
296
|
+
margin: 0;
|
|
297
|
+
}
|
|
298
|
+
|
|
295
299
|
select.bk-input:focus {
|
|
296
300
|
box-shadow: unset;
|
|
297
301
|
}
|
|
Binary file
|
package/package.json
CHANGED