SAAS-1022: Re-implement disk quota status on side nav bar

Small css fix
This commit is contained in:
drigato 2015-08-25 13:09:07 -04:00
parent bb2757127d
commit 0c50247909
3 changed files with 4 additions and 3 deletions

View File

@ -28,7 +28,7 @@
$used = $disk->totalSpace-$disk->totalFreeSpace; $used = $disk->totalSpace-$disk->totalFreeSpace;
$total = $disk->totalSpace; $total = $disk->totalSpace;
?> ?>
<div> <div style="height:100%">
<form action="/rest/media" method="post" id="add-media-dropzone" class="dropzone dz-clickable"> <form action="/rest/media" method="post" id="add-media-dropzone" class="dropzone dz-clickable">
<?php echo $this->form->getElement('csrf') ?> <?php echo $this->form->getElement('csrf') ?>
<div class="dz-message"> <div class="dz-message">

View File

@ -265,11 +265,11 @@ table#recent_uploads_table td
} }
.dropzone { .dropzone {
min-height: 150px; min-height: 30%;
border: 2px solid rgba(0, 0, 0, 0.3); border: 2px solid rgba(0, 0, 0, 0.3);
background: #333; background: #333;
padding: 20px 20px; padding: 20px 20px;
max-height: 500px; max-height: 75%;
overflow-y: auto; overflow-y: auto;
} }

View File

@ -3611,6 +3611,7 @@ button.btn-icon-text > i.icon-white {
margin-right: 10px; margin-right: 10px;
height: 100%; height: 100%;
position:relative; position:relative;
max-width: 50%;
} }
#sub-menu-wrapper { #sub-menu-wrapper {