Skip to content
Snippets Groups Projects
Commit 7b094f69 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

adjustments according to gui feedback, re #696

parent 65e8a124
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
</select>
</label>
<table class="default">
<table class="default mvv-files-table">
<? foreach($GLOBALS['MVV_LANGUAGES']['values'] as $key => $entry) : ?>
<tr>
<td rowspan="2">
......@@ -89,7 +89,7 @@
<input type="hidden" name="document_id" id="document_id" value="<?= htmlReady($documents[$key]->fileref_id) ?>">
<span class="icon"><?= Icon::create('file', Icon::ROLE_INFO, ['class' => 'text-bottom']); ?></span>
<span class="name"><?= htmlReady($documents[$key]->filename) ?></span>
<span class="size"></span>
<span class="size"><?= relsize($documents[$key]->file_ref->size) ?></span>
<button class="refresh_attachment as-link" data-language="<?= htmlReady($key) ?>">
<?= Icon::create('refresh')->asImg([
'class' => 'text-bottom',
......
......@@ -634,3 +634,30 @@ form.default .mvv-inst-chooser select {
vertical-align: text-top;
text-decoration: none;
}
li.stgfile {
display: flex;
max-width: 48em;
.size {
margin-left: 0.5ex;
&::before {
content: ' (';
}
&::after {
content: ')';
}
}
button:first-of-type {
flex: 1;
margin-left: auto;
text-align: right;
}
}
.mvv-files-table {
&.default > tbody:last-of-type > tr:last-child td {
border-bottom-color: var(--table-header-color);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment