@jupyterlab/notebook 4.7.0-alpha.0 → 4.7.0-alpha.2

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/style/base.css CHANGED
@@ -281,6 +281,42 @@
281
281
  white-space: normal;
282
282
  }
283
283
 
284
+ .jp-CellIdField {
285
+ padding: 12px 0;
286
+ }
287
+
288
+ .jp-CellIdField label {
289
+ display: block;
290
+ line-height: 1.4;
291
+ }
292
+
293
+ .jp-CellIdField-row {
294
+ display: flex;
295
+ gap: 4px;
296
+ margin-top: 4px;
297
+ }
298
+
299
+ .jp-CellIdField .jp-CellIdField-input {
300
+ flex: 1 1 auto;
301
+ width: 100%;
302
+ min-width: 0;
303
+ font-family: var(--jp-code-font-family);
304
+ font-size: var(--jp-code-font-size);
305
+ }
306
+
307
+ .jp-CellIdField .jp-CellIdField-button {
308
+ flex: 0 0 28px;
309
+ width: 28px;
310
+ padding: 2px;
311
+ margin: 0;
312
+ color: var(--jp-ui-font-color2);
313
+ transition: color 120ms ease;
314
+ }
315
+
316
+ .jp-CellIdField .jp-CellIdField-button.jp-mod-copied {
317
+ color: var(--jp-success-color1);
318
+ }
319
+
284
320
  .jp-MetadataEditorTool {
285
321
  flex-direction: column;
286
322
  padding: 12px 0;