Skip to content

Commit

Permalink
chore: Bump esbuild-loader 2.14.0 -> 2.15.1
Browse files Browse the repository at this point in the history
Changelog:

* https://github.com/privatenumber/esbuild-loader/releases/tag/v2.15.1
* https://github.com/evanw/esbuild/blob/v0.12.28/CHANGELOG.md

This allows us to remove the hack we introduced in
git #tuleap/stable/a23aca9fdb3c90ecb83eb1a29a19c23f7f02f9ab
(due to evanw/esbuild#1538)

No functional changes

Closes request #23046: Bump esbuild-loader 2.14.0 -> 2.15.1

Change-Id: I36b9802a773690594ef581644ef4d83c982c1cad
  • Loading branch information
nterray committed Sep 20, 2021
1 parent 755d0cd commit ef1a4bf
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 28 deletions.
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions plugins/document/themes/_dragndrop.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@
height: 100vh;
padding: var(--tlp-medium-spacing) var(--tlp-medium-spacing) var(--tlp-small-spacing);
transition: box-shadow 100ms ease-in-out;
// 0.1px because esbuild removes the last zero when three zeros are used
box-shadow: inset 0 0 0.1px var(--tlp-small-spacing) transparent;
box-shadow: inset 0 0 0 var(--tlp-small-spacing) transparent;
color: var(--tlp-white-color);
text-align: center;
pointer-events: none;

&.shown-success {
// 0.1px because esbuild removes the last zero when three zeros are used
box-shadow: inset 0 0 0.1px var(--tlp-small-spacing) var(--tlp-main-color-transparent-15);
box-shadow: inset 0 0 0 var(--tlp-small-spacing) var(--tlp-main-color-transparent-15);

> .document-upload-to-current-folder-message {
transform: translateY(calc(-1 * var(--tlp-small-spacing)));
Expand All @@ -45,8 +43,7 @@
}

&.shown-error {
// 0.1px because esbuild removes the last zero when three zeros are used
box-shadow: inset 0 0 0.1px var(--tlp-small-spacing) var(--tlp-danger-color-transparent-15);
box-shadow: inset 0 0 0 var(--tlp-small-spacing) var(--tlp-danger-color-transparent-15);

> .document-upload-to-current-folder-message {
transform: translateY(calc(-1 * var(--tlp-small-spacing)));
Expand Down

0 comments on commit ef1a4bf

Please sign in to comment.