-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(www): preliminary support for uploading to the shared storage
Signed-off-by: Cedric Hombourger <cedric.hombourger@siemens.com>
- Loading branch information
1 parent
e8b4a47
commit 233f015
Showing
5 changed files
with
175 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* --------------------------------------------------------------------------- | ||
Copyright (C) 2024 Siemens AG | ||
--------------------------------------------------------------------------- | ||
SPDX-License-Identifier: MIT | ||
--------------------------------------------------------------------------- | ||
*/ | ||
|
||
#dropzone { | ||
width: 100%; | ||
max-width: 600px; | ||
height: 200px; | ||
border: 2px dashed #888; | ||
border-radius: 10px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
color: #888; | ||
font-size: 18px; | ||
margin: 20px auto; | ||
cursor: pointer; | ||
} | ||
|
||
#dropzone.hover { | ||
border-color: #333; | ||
color: #333; | ||
} | ||
|
||
button { | ||
display: block; | ||
margin: 20px auto; | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
button:disabled { | ||
cursor: not-allowed; | ||
opacity: 0.5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters