aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic
diff options
context:
space:
mode:
authorhubzilla <git@macgirvin.com>2016-07-24 23:13:05 +1000
committerGitHub <noreply@github.com>2016-07-24 23:13:05 +1000
commiteb03877aa480c6b0ca4eb6f54131fb2880d62ab0 (patch)
tree698fa719d5f541a5d467796da8cf866f9ca3d138 /view/theme/redbasic
parent4ffc4ee70aa38c24cee2a7ae0b35c9203515acef (diff)
parent4c4d185937687a2a806a8d2b144eaf2dff17acb5 (diff)
downloadvolse-hubzilla-eb03877aa480c6b0ca4eb6f54131fb2880d62ab0.tar.gz
volse-hubzilla-eb03877aa480c6b0ca4eb6f54131fb2880d62ab0.tar.bz2
volse-hubzilla-eb03877aa480c6b0ca4eb6f54131fb2880d62ab0.zip
Merge pull request #458 from anaqreon/dragdropupload
Drag-and-drop file upload for cloud files
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r--view/theme/redbasic/css/style.css23
1 files changed, 22 insertions, 1 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 6cc3e2f10..6fde5e39e 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2040,4 +2040,25 @@ dl.bb-dl > dd > li {
#wiki-preview img {
max-width: 100%;
-} \ No newline at end of file
+}
+
+#filedrag
+{
+ display: none;
+ font-weight: bold;
+ text-align: center;
+ padding: 1em 0;
+ margin: 1em 0;
+ color: #555;
+ border: 2px dashed #555;
+ border-radius: 7px;
+ cursor: default;
+}
+
+#filedrag.hover
+{
+ color: #f00;
+ border-color: #f00;
+ border-style: solid;
+ box-shadow: inset 0 3px 4px #888;
+}