Skip to content

Commit

Permalink
Drag image prompt styling (jupyterlab#16972)
Browse files Browse the repository at this point in the history
* Revert "Alternate description for disabled filters"

This reverts commit 059fb7e.

* Revert "Revert "Alternate description for disabled filters""

This reverts commit 27ed1d0.

* Diminishes border color when dragging multiple cells

---------

Co-authored-by: Jeremy Tuloup <[email protected]>
  • Loading branch information
JasonWeill and jtpio authored Nov 21, 2024
1 parent f2ccf6b commit 006a459
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/notebook/style/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@
flex: 0 0 auto;
min-width: 36px;
color: var(--jp-cell-inprompt-font-color);
opacity: 0.5;
padding: var(--jp-code-padding);
padding-left: 12px;
font-family: var(--jp-cell-prompt-font-family);
Expand All @@ -221,7 +222,13 @@
top: 8px;
left: 8px;
background: var(--jp-layout-color2);
border: var(--jp-border-width) solid var(--jp-input-border-color);
border-width: var(--jp-border-width);
border-style: solid;
border-color: color-mix(
in srgb,
var(--jp-input-border-color) 20%,
transparent
);
box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

Expand Down

0 comments on commit 006a459

Please sign in to comment.