aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-12-29 22:45:07 +0100
committermarijus <mario@mariovavti.com>2014-12-29 22:45:07 +0100
commitf2bfdf0c76d2cce95f136b5240a6d7aa18bea8dc (patch)
tree1b662d1528ac8f28021fbc35d2cedf4385c6bee7 /view/tpl
parentd801c361d6cd907ca841b58933a289dc4c5ccebe (diff)
downloadvolse-hubzilla-f2bfdf0c76d2cce95f136b5240a6d7aa18bea8dc.tar.gz
volse-hubzilla-f2bfdf0c76d2cce95f136b5240a6d7aa18bea8dc.tar.bz2
volse-hubzilla-f2bfdf0c76d2cce95f136b5240a6d7aa18bea8dc.zip
some work on cloud actionspanel and minor cleanup
Diffstat (limited to 'view/tpl')
-rw-r--r--view/tpl/cloud_actionspanel.tpl11
1 files changed, 6 insertions, 5 deletions
diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl
index d88bc94c4..0e621e9db 100644
--- a/view/tpl/cloud_actionspanel.tpl
+++ b/view/tpl/cloud_actionspanel.tpl
@@ -2,16 +2,17 @@
<label for="files-mkdir">{{$folder_header}}</label>
<form method="post" action="">
<input type="hidden" name="sabreAction" value="mkcol">
- <input id="files-mkdir" type="text" name="name">
- <input type="submit" value="{{$folder_submit}}">
+ <input id="files-mkdir" type="text" name="name" class="form-control form-group">
+ <button class="btn btn-primary btn-sm pull-right" type="submit" value="{{$folder_submit}}">{{$folder_submit}}</button>
</form>
+ <div class="clear"></div>
</div>
<div id="files-upload-tools" class="section-content-tools-wrapper form-group">
- <label for="files-upload">{{$upload_header}}</label>
<form method="post" action="" enctype="multipart/form-data">
<input type="hidden" name="sabreAction" value="put">
- <input id="files-upload" type="file" name="file" style="display: inline;">
- <input type="submit" value="{{$upload_submit}}">
+ <input class="pull-left" id="files-upload" type="file" name="file">
+ <button class="btn btn-primary btn-sm pull-right" type="submit" value="{{$upload_submit}}">{{$upload_submit}}</button>
<!-- Name (optional): <input type="text" name="name"> we should rather provide a rename action in edit form-->
</form>
+ <div class="clear"></div>
</div>