試しにCSSを設定した結果はこちらです。
設定するCSSについては、Philipp HartenfellerさんのGitHubを参照してください。
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
.apex-item-filedrop { | |
border: 3px dashed #ccd0d4; | |
background: #f7f7f7; | |
border-radius: 4px; | |
box-shadow: inset 0px 2px 6px 0px #d2d2d291; | |
transition: border-color 300ms cubic-bezier(0, 0, 0.2, 1); | |
} | |
.apex-item-filedrop.is-dragging { | |
border-color: #0076df; | |
} |
完